diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-10-19 19:23:10 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-07 12:30:37 +0900 |
commit | e88627976488b0b6eea6da3389eefb860980d661 (patch) | |
tree | c5972d761fc43b6a29b86a495722d309ccf80b65 /jobs/generated/logout.cpp | |
parent | 70d9ca7b870e35109dfdbe9ab3c63ba094a75379 (diff) | |
download | libquotient-e88627976488b0b6eea6da3389eefb860980d661.tar.gz libquotient-e88627976488b0b6eea6da3389eefb860980d661.zip |
Generated jobs: Don't dump empty strings to body parameters
This is important for (soon to be added) LoginJob, since the server is
sensitive to getting an (even empty) entity for "medium" as opposed to
omitting it entirely. This cannot be addressed on the spec level; on the
other hand, removing empty parameters from the payload reduces useless
bytes getting on the wire.
Diffstat (limited to 'jobs/generated/logout.cpp')
-rw-r--r-- | jobs/generated/logout.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jobs/generated/logout.cpp b/jobs/generated/logout.cpp index a5848e7c..c2480ff9 100644 --- a/jobs/generated/logout.cpp +++ b/jobs/generated/logout.cpp @@ -15,8 +15,7 @@ static const auto basePath = QStringLiteral("/_matrix/client/r0"); LogoutJob::LogoutJob() : BaseJob(HttpVerb::Post, "LogoutJob", basePath % "/logout", - Query { }, - Data { } + Query { } ) { } |