summary refs log tree commit diff
path: root/src/MatrixClient.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-02-05 08:40:56 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2022-02-05 08:40:56 +0100
commitb3221b09d6e12cda47a4ebc8443cac43bb71d29c (patch)
tree39b14ca0d156bbef30beda6295f7c63374e1e74c /src/MatrixClient.cpp
parentFix avatar url conversion for widgets (diff)
downloadnheko-b3221b09d6e12cda47a4ebc8443cac43bb71d29c.tar.xz
Add /reset-state command
Diffstat (limited to '')
-rw-r--r--src/MatrixClient.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/MatrixClient.cpp b/src/MatrixClient.cpp

index 1ef2bd3a..c565176e 100644 --- a/src/MatrixClient.cpp +++ b/src/MatrixClient.cpp
@@ -20,6 +20,7 @@ Q_DECLARE_METATYPE(mtx::responses::Messages) Q_DECLARE_METATYPE(mtx::responses::Notifications) Q_DECLARE_METATYPE(mtx::responses::Rooms) Q_DECLARE_METATYPE(mtx::responses::Sync) +Q_DECLARE_METATYPE(mtx::responses::StateEvents) Q_DECLARE_METATYPE(mtx::responses::JoinedGroups) Q_DECLARE_METATYPE(mtx::responses::GroupProfile) @@ -52,6 +53,7 @@ init() qRegisterMetaType<mtx::responses::Notifications>(); qRegisterMetaType<mtx::responses::Rooms>(); qRegisterMetaType<mtx::responses::Sync>(); + qRegisterMetaType<mtx::responses::StateEvents>(); qRegisterMetaType<mtx::responses::JoinedGroups>(); qRegisterMetaType<mtx::responses::GroupProfile>(); qRegisterMetaType<std::string>();