aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/report_content.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csapi/report_content.cpp')
-rw-r--r--lib/csapi/report_content.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/csapi/report_content.cpp b/lib/csapi/report_content.cpp
index b8e9a8d1..bc52208f 100644
--- a/lib/csapi/report_content.cpp
+++ b/lib/csapi/report_content.cpp
@@ -12,8 +12,8 @@ ReportContentJob::ReportContentJob(const QString& roomId, const QString& eventId
makePath("/_matrix/client/v3", "/rooms/", roomId, "/report/",
eventId))
{
- QJsonObject _data;
- addParam<IfNotEmpty>(_data, QStringLiteral("score"), score);
- addParam<IfNotEmpty>(_data, QStringLiteral("reason"), reason);
- setRequestData(std::move(_data));
+ QJsonObject _dataJson;
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("score"), score);
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("reason"), reason);
+ setRequestData({ _dataJson });
}