diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-23 17:18:12 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-23 17:27:06 +0100 |
commit | 3ef036cd5936df4c0324ef54aa2bc11d745bd4c7 (patch) | |
tree | 36a8a3af62242576f4a5d4f940522d48dca0649f /lib | |
parent | 42b78ce6c487d6c39415f160de1bf0f9aaa12185 (diff) | |
download | libquotient-3ef036cd5936df4c0324ef54aa2bc11d745bd4c7.tar.gz libquotient-3ef036cd5936df4c0324ef54aa2bc11d745bd4c7.zip |
Connection::resolveServer(): fix error handling
Part of the fix for #421.
(cherry picked from commit 104356d945671762af23e346f7898a3208770d97)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connection.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index e84b8080..386c6564 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -270,8 +270,8 @@ void Connection::resolveServer(const QString& mxid) d->data->setBaseUrl(maybeBaseUrl); // Just enough to check .well-known file d->resolverJob = callApi<GetWellknownJob>(); connect(d->resolverJob, &BaseJob::finished, this, [this, maybeBaseUrl] { - if (d->resolverJob->status() != BaseJob::NotFoundError) { - if (d->resolverJob->status() != BaseJob::Success) { + if (d->resolverJob->error() != BaseJob::NotFoundError) { + if (!d->resolverJob->status().good()) { qCWarning(MAIN) << "Fetching .well-known file failed, FAIL_PROMPT"; emit resolveError(tr("Failed resolving the homeserver")); @@ -301,8 +301,7 @@ void Connection::resolveServer(const QString& mxid) &Connection::resolved); connect(d->loginFlowsJob, &BaseJob::failure, this, [this] { qCWarning(MAIN) << "Homeserver base URL sanity check failed"; - emit resolveError( - tr("The homeserver base URL doesn't seem to work")); + emit resolveError(tr("The homeserver doesn't seem to be working")); }); }); } |