aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/versions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csapi/versions.cpp')
-rw-r--r--lib/csapi/versions.cpp20
1 files changed, 7 insertions, 13 deletions
diff --git a/lib/csapi/versions.cpp b/lib/csapi/versions.cpp
index 6ee6725d..13e3be15 100644
--- a/lib/csapi/versions.cpp
+++ b/lib/csapi/versions.cpp
@@ -15,31 +15,26 @@ static const auto basePath = QStringLiteral("/_matrix/client");
class GetVersionsJob::Private
{
public:
- QStringList versions;
- QHash<QString, bool> unstableFeatures;
+ QStringList versions;
+ QHash<QString, bool> unstableFeatures;
};
QUrl GetVersionsJob::makeRequestUrl(QUrl baseUrl)
{
- return BaseJob::makeRequestUrl(std::move(baseUrl),
- basePath % "/versions");
+ return BaseJob::makeRequestUrl(std::move(baseUrl), basePath % "/versions");
}
static const auto GetVersionsJobName = QStringLiteral("GetVersionsJob");
GetVersionsJob::GetVersionsJob()
- : BaseJob(HttpVerb::Get, GetVersionsJobName,
- basePath % "/versions", false)
- , d(new Private)
+ : BaseJob(HttpVerb::Get, GetVersionsJobName, basePath % "/versions", false),
+ d(new Private)
{
}
GetVersionsJob::~GetVersionsJob() = default;
-const QStringList& GetVersionsJob::versions() const
-{
- return d->versions;
-}
+const QStringList& GetVersionsJob::versions() const { return d->versions; }
const QHash<QString, bool>& GetVersionsJob::unstableFeatures() const
{
@@ -51,9 +46,8 @@ BaseJob::Status GetVersionsJob::parseJson(const QJsonDocument& data)
auto json = data.object();
if (!json.contains("versions"_ls))
return { JsonParseError,
- "The key 'versions' not found in the response" };
+ "The key 'versions' not found in the response" };
fromJson(json.value("versions"_ls), d->versions);
fromJson(json.value("unstable_features"_ls), d->unstableFeatures);
return Success;
}
-