diff options
author | David Faure <faure@kde.org> | 2020-11-26 22:32:55 +0100 |
---|---|---|
committer | David Faure <faure@kde.org> | 2020-11-26 22:32:55 +0100 |
commit | 17d6e00597fdc1c8f25808735cbc728c4a6b3506 (patch) | |
tree | f27be06719da60306413cfb62d6eb578d69bdf98 /lib/jobs | |
parent | 21554bccc39ab2f63869c244ed880686805887cb (diff) | |
download | libquotient-17d6e00597fdc1c8f25808735cbc728c4a6b3506.tar.gz libquotient-17d6e00597fdc1c8f25808735cbc728c4a6b3506.zip |
Enable QT_NO_URL_CAST_FROM_STRING and QT_STRICT_ITERATORS.
* QT_NO_URL_CAST_FROM_STRING makes it clearer where QUrls are created
from QStrings (which incurs a parsing cost).
* QT_STRICT_ITERATORS helps detecting where begin()/end() is used
instead of cbegin()/cend(). KDE developers have verified that
the generated assembly code is identical.
Diffstat (limited to 'lib/jobs')
-rw-r--r-- | lib/jobs/basejob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jobs/basejob.cpp b/lib/jobs/basejob.cpp index 1f0e84ba..422931ee 100644 --- a/lib/jobs/basejob.cpp +++ b/lib/jobs/basejob.cpp @@ -534,7 +534,7 @@ BaseJob::Status BaseJob::prepareError() } if (errCode == "M_CONSENT_NOT_GIVEN") { - d->errorUrl = errorJson.value("consent_uri"_ls).toString(); + d->errorUrl = QUrl(errorJson.value("consent_uri"_ls).toString()); return { UserConsentRequiredError }; } if (errCode == "M_UNSUPPORTED_ROOM_VERSION" |