diff options
-rw-r--r-- | lib/connection.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index e28ffb22..138f968f 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -269,9 +269,7 @@ Connection::Connection(const QUrl& server, QObject* parent) : QObject(parent), d(new Private(std::make_unique<ConnectionData>(server))) { #ifdef Quotient_E2EE_ENABLED - connect(qApp, &QCoreApplication::aboutToQuit, this, [this](){ - saveOlmAccount(); - }); + //connect(qApp, &QCoreApplication::aboutToQuit, this, &Connection::saveOlmAccount); #endif d->q = this; // All d initialization should occur before this line } |