mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
React with arbitrary strings via /react
This commit is contained in:
parent
703950273b
commit
7abeb1f1a4
1 changed files with 6 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
#include "MatrixClient.h"
|
||||
#include "Olm.h"
|
||||
#include "TimelineModel.h"
|
||||
#include "TimelineViewManager.h"
|
||||
#include "UserSettingsPage.h"
|
||||
#include "UsersModel.h"
|
||||
#include "Utils.h"
|
||||
|
@ -433,6 +434,11 @@ InputBar::command(QString command, QString args)
|
|||
{
|
||||
if (command == "me") {
|
||||
emote(args);
|
||||
} else if (command == "react") {
|
||||
auto eventId = room->reply();
|
||||
if (!eventId.isEmpty())
|
||||
ChatPage::instance()->timelineManager()->queueReactionMessage(
|
||||
eventId, args.trimmed());
|
||||
} else if (command == "join") {
|
||||
ChatPage::instance()->joinRoom(args);
|
||||
} else if (command == "invite") {
|
||||
|
|
Loading…
Reference in a new issue