Skip to content

Commit

Permalink
Merge pull request #28 from Automattic/teamsync_new_room_fix
Browse files Browse the repository at this point in the history
Teamsync fix to dynamically create rooms
  • Loading branch information
ashfame authored Nov 28, 2023
2 parents d4b2383 + b42138a commit 0e9757a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/TeamSyncer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -617,8 +617,11 @@ export class TeamSyncer {
plUsers[admin] = 100;
}

// Important note: default alias needs to be undefined if alias prefix isn't used
// 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
const aliasPrefix = this.getAliasPrefix(teamId);
const alias = aliasPrefix ? `${aliasPrefix}${channel.name.toLowerCase()}` : channel.name.toLowerCase();
const alias = aliasPrefix ? `${aliasPrefix}${channel.name.toLowerCase()}` : undefined;
let topic: undefined|string;
if (channel.purpose) {
topic = channel.purpose.value;
Expand Down

0 comments on commit 0e9757a

Please sign in to comment.