diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2019-08-19 20:44:58 -0400 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2019-08-19 20:44:58 -0400 |
commit | 89015b9f187a36b71eed49d03b44545c1976efed (patch) | |
tree | 901b3419e888f9d3de84508644c9e5b075411e55 /src/Cache.cpp | |
parent | Fix build issues w/ clang (diff) | |
download | nheko-89015b9f187a36b71eed49d03b44545c1976efed.tar.xz |
Fix SIGNAL SLOT issue on mtx types
Diffstat (limited to 'src/Cache.cpp')
-rw-r--r-- | src/Cache.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Cache.cpp b/src/Cache.cpp index eee75f25..ef0f951e 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp @@ -92,6 +92,7 @@ init(const QString &user_id) qRegisterMetaType<RoomSearchResult>(); qRegisterMetaType<RoomInfo>(); qRegisterMetaType<QMap<QString, RoomInfo>>(); + qRegisterMetaType<QMap<QString, mtx::responses::Notifications>>(); qRegisterMetaType<std::map<QString, RoomInfo>>(); qRegisterMetaType<std::map<QString, mtx::responses::Timeline>>(); |