diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-10-04 18:40:48 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-10-04 18:40:48 +0200 |
commit | 1fd25fe944b67c55435ed4d4d8fd1cbb0989bb5f (patch) | |
tree | 88bde5f7a3f0ec2620694f925d0ec5ae2af97f2f /lib/csapi/wellknown.cpp | |
parent | 96f31d7d8ed1c9ab905c24ac039079aea622f4dc (diff) | |
download | libquotient-1fd25fe944b67c55435ed4d4d8fd1cbb0989bb5f.tar.gz libquotient-1fd25fe944b67c55435ed4d4d8fd1cbb0989bb5f.zip |
Regenerate CS API files upon the previous commit
Diffstat (limited to 'lib/csapi/wellknown.cpp')
-rw-r--r-- | lib/csapi/wellknown.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/csapi/wellknown.cpp b/lib/csapi/wellknown.cpp index 1aa0a90b..0b441279 100644 --- a/lib/csapi/wellknown.cpp +++ b/lib/csapi/wellknown.cpp @@ -4,18 +4,15 @@ #include "wellknown.h" -#include <QtCore/QStringBuilder> - using namespace Quotient; QUrl GetWellknownJob::makeRequestUrl(QUrl baseUrl) { return BaseJob::makeRequestUrl(std::move(baseUrl), - QStringLiteral("/.well-known") - % "/matrix/client"); + makePath("/.well-known", "/matrix/client")); } GetWellknownJob::GetWellknownJob() : BaseJob(HttpVerb::Get, QStringLiteral("GetWellknownJob"), - QStringLiteral("/.well-known") % "/matrix/client", false) + makePath("/.well-known", "/matrix/client"), false) {} |