Merge pull request #5762 from timokoesters/fix-servername-parsing

fix: make room directory correct when using a homeserver with explicit port
This commit is contained in:
Michael Telatynski
2021-03-16 10:12:58 +00:00
committed by GitHub

View File

@@ -261,7 +261,7 @@ class _MatrixClientPeg implements IMatrixClientPeg {
}
public getHomeserverName(): string {
const matches = /^@.+:(.+)$/.exec(this.matrixClient.credentials.userId);
const matches = /^@[^:]+:(.+)$/.exec(this.matrixClient.credentials.userId);
if (matches === null || matches.length < 1) {
throw new Error("Failed to derive homeserver name from user ID!");
}