diff options
Diffstat (limited to 'lib/csapi/versions.cpp')
-rw-r--r-- | lib/csapi/versions.cpp | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/lib/csapi/versions.cpp b/lib/csapi/versions.cpp index 4b7c4ced..1d66b94f 100644 --- a/lib/csapi/versions.cpp +++ b/lib/csapi/versions.cpp @@ -14,32 +14,26 @@ static const auto basePath = QStringLiteral("/_matrix/client"); class GetVersionsJob::Private { - public: - QStringList versions; - QHash<QString, bool> unstableFeatures; +public: + 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) + : 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 +45,9 @@ BaseJob::Status GetVersionsJob::parseJson(const QJsonDocument& data) auto json = data.object(); if (!json.contains("versions"_ls)) return { IncorrectResponse, - "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; } - |