diff options
author | Tobias Fella <fella@posteo.de> | 2021-12-25 18:19:46 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-25 18:19:46 +0100 |
commit | d56bb69f06c70bb7cf659d5fdde4e2306d7fb2f2 (patch) | |
tree | f48091e6d54461d927c7655aa2912d289ac02b92 /lib | |
parent | 586332cda3d786ccbe74b21bd70d290fee722719 (diff) | |
download | libquotient-d56bb69f06c70bb7cf659d5fdde4e2306d7fb2f2.tar.gz libquotient-d56bb69f06c70bb7cf659d5fdde4e2306d7fb2f2.zip |
Don't save olm account ón shutdown
It causes the program to crash for some reason
Diffstat (limited to 'lib')
-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 } |