Disable creating spaces for categories
This commit is contained in:
parent
5420eb6131
commit
f468c0671e
1 changed files with 26 additions and 0 deletions
26
matrix/mautrix-discord/no-category-spaces.patch
Normal file
26
matrix/mautrix-discord/no-category-spaces.patch
Normal file
|
@ -0,0 +1,26 @@
|
|||
diff --git a/portal.go b/portal.go
|
||||
index 25e0dc2..7a14a3d 100644
|
||||
--- a/portal.go
|
||||
+++ b/portal.go
|
||||
@@ -351,7 +351,7 @@ func (portal *Portal) CreateMatrixRoom(user *User, channel *discordgo.Channel) e
|
||||
|
||||
creationContent := make(map[string]interface{})
|
||||
if portal.Type == discordgo.ChannelTypeGuildCategory {
|
||||
- creationContent["type"] = event.RoomTypeSpace
|
||||
+ return nil
|
||||
}
|
||||
if !portal.bridge.Config.Bridge.FederateRooms {
|
||||
creationContent["m.federate"] = false
|
||||
@@ -1777,11 +1777,7 @@ func (portal *Portal) UpdateParent(parentID string) bool {
|
||||
}
|
||||
portal.log.Debugfln("Updating parent ID %q -> %q", portal.ParentID, parentID)
|
||||
portal.ParentID = parentID
|
||||
- if portal.ParentID != "" {
|
||||
- portal.Parent = portal.bridge.GetPortalByID(database.NewPortalKey(parentID, ""), discordgo.ChannelTypeGuildCategory)
|
||||
- } else {
|
||||
- portal.Parent = nil
|
||||
- }
|
||||
+ portal.Parent = nil
|
||||
return true
|
||||
}
|
||||
|
Reference in a new issue