We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01114b7 commit 17816c4Copy full SHA for 17816c4
src/TeamSyncer.ts
@@ -618,8 +618,8 @@ export class TeamSyncer {
618
}
619
620
// Important note: default alias needs to be undefined if alias prefix isn't used
621
- // otherwise teamsync would fail to create new room since if room alias is specified,
622
- // it needs to have exclusive access to such rooms (configured in app service config)
+ // otherwise Synapse refuses to create the room even when room alias is specified, as if it wasn't specified
+ // Seems like a bug but looking at Synapse's code, I couldn't find what's wrong
623
const aliasPrefix = this.getAliasPrefix(teamId);
624
const alias = aliasPrefix ? `${aliasPrefix}${channel.name.toLowerCase()}` : undefined;
625
let topic: undefined|string;
0 commit comments