diff options
author | Raquel Medina <raquel.medina@konsulko.com> | 2019-12-17 13:58:25 +0100 |
---|---|---|
committer | Raquel Medina <raquel.medina@konsulko.com> | 2019-12-17 13:58:42 +0100 |
commit | 72eb23f64454c16301ae3856f122698b137b3038 (patch) | |
tree | 45d504ad66f11b61ed6a951481649390403337c2 /message.h | |
parent | 21bba7d5db82a5261ec3a5db1971985b70d49b07 (diff) |
fix parsing for all events, overloading for specific needsicefish_8.99.4icefish/8.99.48.99.4
commit 21bba7d, introduced extra parsing ops
to process voice_xxxx_event payloads, which
carry extra whitespaces and eol chars; however
that change introduced a regression for other
events.
To solve the parsing issue for all events
processed by libqtappfw, overloading is applied
to 'fromJdoc' method.
Bug-AGL: SPEC-3060
Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Change-Id: I175848cba7f9f9e2e8b4e5984e7abc2a2fc12464
Diffstat (limited to 'message.h')
-rw-r--r-- | message.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ class Message : public QObject Message(); bool fromJson(QByteArray jsonData); - bool fromJDoc(QJsonDocument jdocData); + virtual bool fromJDoc(QJsonDocument jdocData); QByteArray toJson(QJsonDocument::JsonFormat format = QJsonDocument::Compact); bool createRequest(QString api, QString verb, QJsonValue parameter = "None"); inline QString eventApi() const |