More explicit reference checking
This commit is contained in:
parent
e92ac67152
commit
cf8c98e076
1 changed files with 5 additions and 4 deletions
|
@ -130,13 +130,14 @@ export class RoomPermalinkCreator {
|
|||
}
|
||||
|
||||
forRoom() {
|
||||
try {
|
||||
if (this._room) {
|
||||
// Prefer to use canonical alias for permalink if possible
|
||||
const alias = this._room.getCanonicalAlias();
|
||||
return getPermalinkConstructor().forRoom(alias, this._serverCandidates);
|
||||
} catch (error) {
|
||||
return getPermalinkConstructor().forRoom(this._roomId, this._serverCandidates);
|
||||
if (alias) {
|
||||
return getPermalinkConstructor().forRoom(alias, this._serverCandidates);
|
||||
}
|
||||
}
|
||||
return getPermalinkConstructor().forRoom(this._roomId, this._serverCandidates);
|
||||
}
|
||||
|
||||
onRoomState(event) {
|
||||
|
|
Loading…
Reference in a new issue