diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-01 00:02:24 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-01 00:02:24 +0900 |
commit | b469f1c9ab7603a297b1c0082d804312cabbd550 (patch) | |
tree | 0af150a0180b12d9a74fb40c96ef9a184508039f /events/event.cpp | |
parent | 715ebcfc5c33ff83cc8f185b6e14cfbba01c637b (diff) | |
parent | ae59271da3a199eb936aa709893ef592cd51f172 (diff) | |
download | libquotient-b469f1c9ab7603a297b1c0082d804312cabbd550.tar.gz libquotient-b469f1c9ab7603a297b1c0082d804312cabbd550.zip |
Merge branch 'master' into kitsune-apigen
Diffstat (limited to 'events/event.cpp')
-rw-r--r-- | events/event.cpp | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/events/event.cpp b/events/event.cpp index 8a6de822..d718306d 100644 --- a/events/event.cpp +++ b/events/event.cpp @@ -48,6 +48,11 @@ QByteArray Event::originalJson() const return QJsonDocument(_originalJson).toJson(); } +QJsonObject Event::originalJsonObject() const +{ + return _originalJson; +} + QDateTime Event::toTimestamp(const QJsonValue& v) { Q_ASSERT(v.isDouble() || v.isNull() || v.isUndefined()); @@ -97,21 +102,21 @@ RoomEvent::RoomEvent(Type type, const QJsonObject& rep) , _senderId(rep["sender"].toString()) , _txnId(rep["unsigned"].toObject().value("transactionId").toString()) { - if (_id.isEmpty()) - { - qCWarning(EVENTS) << "Can't find event_id in a room event"; - qCWarning(EVENTS) << formatJson << rep; - } - if (!rep.contains("origin_server_ts")) - { - qCWarning(EVENTS) << "Can't find server timestamp in a room event"; - qCWarning(EVENTS) << formatJson << rep; - } - if (_senderId.isEmpty()) - { - qCWarning(EVENTS) << "Can't find sender in a room event"; - qCWarning(EVENTS) << formatJson << rep; - } +// if (_id.isEmpty()) +// { +// qCWarning(EVENTS) << "Can't find event_id in a room event"; +// qCWarning(EVENTS) << formatJson << rep; +// } +// if (!rep.contains("origin_server_ts")) +// { +// qCWarning(EVENTS) << "Can't find server timestamp in a room event"; +// qCWarning(EVENTS) << formatJson << rep; +// } +// if (_senderId.isEmpty()) +// { +// qCWarning(EVENTS) << "Can't find sender in a room event"; +// qCWarning(EVENTS) << formatJson << rep; +// } if (!_txnId.isEmpty()) qCDebug(EVENTS) << "Event transactionId:" << _txnId; } |