diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-06-16 13:29:02 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-06-18 19:36:32 +0200 |
commit | 2dd85770cbfd6d9c7506757f25765c05ef74987d (patch) | |
tree | 5de167f66ee610ad01bca776897bd6c8183a66d7 /lib/csapi/redaction.cpp | |
parent | 10867950474a360426685ad888237a5542b0cfac (diff) | |
download | libquotient-2dd85770cbfd6d9c7506757f25765c05ef74987d.tar.gz libquotient-2dd85770cbfd6d9c7506757f25765c05ef74987d.zip |
Regenerate API files upon the previous commit
Diffstat (limited to 'lib/csapi/redaction.cpp')
-rw-r--r-- | lib/csapi/redaction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csapi/redaction.cpp b/lib/csapi/redaction.cpp index d67cb37b..154abd9b 100644 --- a/lib/csapi/redaction.cpp +++ b/lib/csapi/redaction.cpp @@ -12,7 +12,7 @@ RedactEventJob::RedactEventJob(const QString& roomId, const QString& eventId, makePath("/_matrix/client/v3", "/rooms/", roomId, "/redact/", eventId, "/", txnId)) { - QJsonObject _data; - addParam<IfNotEmpty>(_data, QStringLiteral("reason"), reason); - setRequestData(std::move(_data)); + QJsonObject _dataJson; + addParam<IfNotEmpty>(_dataJson, QStringLiteral("reason"), reason); + setRequestData({ _dataJson }); } |