summary refs log tree commit diff
path: root/src/TextInputWidget.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-10-03 18:38:28 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-10-03 18:38:28 +0200
commit2a79cd2b6b3548ac86a646b16f5a8d658fdb7282 (patch)
tree8a27f5dbfd1d8c6afb4b0d3d3125785467373f47 /src/TextInputWidget.cpp
parentFix nullopt when iterating reactions (diff)
downloadnheko-2a79cd2b6b3548ac86a646b16f5a8d658fdb7282.tar.xz
Don't fail on missing key for a device and /rotate-megolm-session command
Diffstat (limited to 'src/TextInputWidget.cpp')
-rw-r--r--src/TextInputWidget.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/TextInputWidget.cpp b/src/TextInputWidget.cpp

index 4a25c4cf..d1be7fb4 100644 --- a/src/TextInputWidget.cpp +++ b/src/TextInputWidget.cpp
@@ -709,6 +709,8 @@ TextInputWidget::command(QString command, QString args) emit sendTextMessage("ノ┬─┬ノ ︵ ( \\o°o)\\"); } else if (command == "clear-timeline") { emit clearRoomTimeline(); + } else if (command == "rotate-megolm-session") { + emit rotateMegolmSession(); } }