More explicit reference checking
This commit is contained in:
parent
e92ac67152
commit
cf8c98e076
1 changed files with 5 additions and 4 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue