From 13153e65276ae35cbfd02fdbb120c44f4051a2aa Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 4 Aug 2020 17:20:32 +0200 Subject: 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. --- lib/connection.cpp | 1 + 1 file changed, 1 insertion(+) 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) -- cgit v1.2.3