aboutsummaryrefslogtreecommitdiff
path: root/lib/events/stateevent.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-06 19:58:29 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-06 19:58:29 +0900
commit01cce0e39d255cbcf39f6a1aa58c6d7ab1d995d1 (patch)
tree217c33312e9b9832c0c392f7416fcfc38de19689 /lib/events/stateevent.cpp
parent5b8079ca3d35360b7d98814654f37885f21bcb7e (diff)
downloadlibquotient-01cce0e39d255cbcf39f6a1aa58c6d7ab1d995d1.tar.gz
libquotient-01cce0e39d255cbcf39f6a1aa58c6d7ab1d995d1.zip
Convenience: StateKeyKey, StateKeyKeyL, basicStateEventJson()
Diffstat (limited to 'lib/events/stateevent.cpp')
-rw-r--r--lib/events/stateevent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/stateevent.cpp b/lib/events/stateevent.cpp
index a84f302b..476e0fd6 100644
--- a/lib/events/stateevent.cpp
+++ b/lib/events/stateevent.cpp
@@ -27,7 +27,7 @@ using namespace QMatrixClient;
RoomEvent::factory_t::addMethod(
[] (const QJsonObject& json, const QString& matrixType) -> StateEventPtr
{
- if (!json.contains("state_key"_ls))
+ if (!json.contains(StateKeyKeyL))
return nullptr;
if (auto e = StateEventBase::factory_t::make(json, matrixType))