1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-10 20:17:32 +01:00

a little extra caution

This commit is contained in:
Bruno Windels 2020-09-14 15:44:18 +02:00
parent aa5d55bbf2
commit 8555fd5f18

@ -24,6 +24,6 @@ export class RoomNameTile extends SimpleTile {
get announcement() {
const content = this._entry.content;
return `${this._entry.displayName || this._entry.sender} named the room "${content.name}"`
return `${this._entry.displayName || this._entry.sender} named the room "${content?.name}"`
}
}