More explicit reference checking

pull/21833/head
Simon Merrick 2020-12-02 12:34:43 +13:00
parent e92ac67152
commit cf8c98e076
1 changed files with 5 additions and 4 deletions

View File

@ -130,14 +130,15 @@ export class RoomPermalinkCreator {
}
forRoom() {
try {
if (this._room) {
// Prefer to use canonical alias for permalink if possible
const alias = this._room.getCanonicalAlias();
if (alias) {
return getPermalinkConstructor().forRoom(alias, this._serverCandidates);
} catch (error) {
return getPermalinkConstructor().forRoom(this._roomId, this._serverCandidates);
}
}
return getPermalinkConstructor().forRoom(this._roomId, this._serverCandidates);
}
onRoomState(event) {
switch (event.getType()) {