Replace QuestionDialog with InfoDialog

Display a default message if no room topic is present

Signed-off-by: Bastian <matrix@noxware.de>
pull/21833/head
Bastian 2019-01-31 18:00:37 +01:00
parent f245fa6a52
commit 8273662500
1 changed files with 3 additions and 4 deletions

View File

@ -154,13 +154,12 @@ export const CommandMap = {
const topicEvents = room.currentState.getStateEvents('m.room.topic', '');
const topic = topicEvents.getContent().topic;
const topicHtml = linkifyString(sanitizeHtml(topic));
const topicHtml = topic ? linkifyString(sanitizeHtml(topic)) : _t('This room has no topic.');
const QuestionDialog = sdk.getComponent('dialogs.QuestionDialog');
Modal.createTrackedDialog('Slash Commands', 'Topic', QuestionDialog, {
const InfoDialog = sdk.getComponent('dialogs.InfoDialog');
Modal.createTrackedDialog('Slash Commands', 'Topic', InfoDialog, {
title: room.name,
description: <div dangerouslySetInnerHTML={{ __html: topicHtml }} />,
hasCancelButton: false,
});
return success();
},