aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/profile.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-06 21:21:27 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 12:35:51 +0900
commit80588a782ce702384802e3e0cb469f71e5640ef4 (patch)
tree9e98036483bca668a118d83c103c9f728757f7d5 /jobs/generated/profile.cpp
parentc18b0c5be800a39898b6f6619209d1f96d022afa (diff)
downloadlibquotient-80588a782ce702384802e3e0cb469f71e5640ef4.tar.gz
libquotient-80588a782ce702384802e3e0cb469f71e5640ef4.zip
Make BaseJob::Data consume QByteArray as well, not only QJsonObject
This is needed to support cases of content-repo, where the request/response bodies are not JSON.
Diffstat (limited to 'jobs/generated/profile.cpp')
-rw-r--r--jobs/generated/profile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/jobs/generated/profile.cpp b/jobs/generated/profile.cpp
index 42a2350f..6ec566f7 100644
--- a/jobs/generated/profile.cpp
+++ b/jobs/generated/profile.cpp
@@ -19,7 +19,7 @@ SetDisplayNameJob::SetDisplayNameJob(const QString& userId, const QString& displ
Query { }
)
{
- Data _data;
+ QJsonObject _data;
if (!displayname.isEmpty())
_data.insert("displayname", toJson(displayname));
setRequestData(_data);
@@ -61,7 +61,7 @@ SetAvatarUrlJob::SetAvatarUrlJob(const QString& userId, const QString& avatarUrl
Query { }
)
{
- Data _data;
+ QJsonObject _data;
if (!avatarUrl.isEmpty())
_data.insert("avatar_url", toJson(avatarUrl));
setRequestData(_data);