aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-04 17:20:32 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-04 17:20:32 +0200
commit13153e65276ae35cbfd02fdbb120c44f4051a2aa (patch)
treeb5d36e913c9d23abb9a34f2b0962d9044466e3af /lib
parentdd6cf808d69eaa52f7642def5f6f94500ee9bc79 (diff)
downloadlibquotient-13153e65276ae35cbfd02fdbb120c44f4051a2aa.tar.gz
libquotient-13153e65276ae35cbfd02fdbb120c44f4051a2aa.zip
Connection: self-delete after emitting loggedOut()
The Connection object has quite few uses after logging out - neither rooms nor users under it no more represent actual situation, and the object cannot be cleanly reused for a new login (also, the use case for that is pretty dubious). This doesn't cover the case when the session has been forcibly logged-out by the server (causing loginError() to be emitted) - in that case re-authentication is an expected flow.
Diffstat (limited to 'lib')
-rw-r--r--lib/connection.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index 4530d95a..97805fe7 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -471,6 +471,7 @@ void Connection::logout()
disconnect(d->syncLoopConnection);
d->data->setToken({});
emit loggedOut();
+ deleteLater();
} else { // logout() somehow didn't proceed - restore the session state
emit stateChanged();
if (wasSyncing)