1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Fix error if topicEvents is undefined

Signed-off-by: Bastian <matrix@noxware.de>
This commit is contained in:
Bastian
2019-02-06 20:10:44 +01:00
parent aa0ae88076
commit 951f0fc816

View File

@@ -148,7 +148,7 @@ export const CommandMap = {
if (!room) return reject('Bad room ID: ' + roomId);
const topicEvents = room.currentState.getStateEvents('m.room.topic', '');
const topic = topicEvents.getContent().topic;
const topic = topicEvents && topicEvents.getContent().topic;
const topicHtml = topic ? linkifyAndSanitizeHtml(topic) : _t('This room has no topic.');
const InfoDialog = sdk.getComponent('dialogs.InfoDialog');