diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-11 08:27:42 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-11 08:27:42 +0100 |
commit | 766410a6c9e928915ece112f4f4f4a4317789e5f (patch) | |
tree | 95cb911222a51718fd27c788c0a83805c75aa33f /lib/connection.cpp | |
parent | 5c0346f3a700e6af31463490b7af3382b86e09d5 (diff) | |
parent | 65bb0b5fcf029df7a9bfa0b7b7b7e3203fd7862f (diff) | |
download | libquotient-766410a6c9e928915ece112f4f4f4a4317789e5f.tar.gz libquotient-766410a6c9e928915ece112f4f4f4a4317789e5f.zip |
Merge branch 'dev' into kitsune-fix-read-receipts-and-markers
Diffstat (limited to 'lib/connection.cpp')
-rw-r--r-- | lib/connection.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 1fe0d2d0..75966731 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -77,8 +77,6 @@ public: explicit Private(std::unique_ptr<ConnectionData>&& connection) : data(move(connection)) {} - Q_DISABLE_COPY(Private) - DISABLE_MOVE(Private) Connection* q = nullptr; std::unique_ptr<ConnectionData> data; @@ -316,10 +314,6 @@ void Connection::resolveServer(const QString& mxid) setHomeserver(maybeBaseUrl); } Q_ASSERT(d->loginFlowsJob != nullptr); // Ensured by setHomeserver() - connect(d->loginFlowsJob, &BaseJob::failure, this, [this] { - qCWarning(MAIN) << "Homeserver base URL sanity check failed"; - emit resolveError(tr("The homeserver doesn't seem to be working")); - }); }); } @@ -478,10 +472,11 @@ void Connection::Private::checkAndConnect(const QString& userId, connectFn(); else emit q->loginError( + tr("Unsupported login flow"), tr("The homeserver at %1 does not support" " the login flow '%2'") - .arg(data->baseUrl().toDisplayString()), - flow->type); + .arg(data->baseUrl().toDisplayString(), + flow->type)); }); else connectSingleShot(q, &Connection::homeserverChanged, q, connectFn); |