diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-10-08 16:17:38 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-10-08 16:17:38 +0200 |
commit | cd43147b77da5852c336fcac857da5c6e7f09569 (patch) | |
tree | 18e0dfb035897dcc7edb8b72ec0ccac5b72fa09d /src/Cache.cpp | |
parent | Calculate verification status from cross-signing sigs and update dynamically (diff) | |
download | nheko-cd43147b77da5852c336fcac857da5c6e7f09569.tar.xz |
Implement signature upload for own master key
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 d6da03c6..d1afa2a1 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp @@ -3591,6 +3591,7 @@ init(const QString &user_id) qRegisterMetaType<QMap<QString, RoomInfo>>(); qRegisterMetaType<std::map<QString, RoomInfo>>(); qRegisterMetaType<std::map<QString, mtx::responses::Timeline>>(); + qRegisterMetaType<mtx::responses::QueryKeys>(); instance_ = std::make_unique<Cache>(user_id); } |