1 files changed, 2 insertions, 1 deletions
diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp
index 674a5424..cd7f3779 100644
--- a/src/ChatPage.cpp
+++ b/src/ChatPage.cpp
@@ -242,7 +242,8 @@ ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QObject *parent)
this,
[this]() {
QTimer::singleShot(std::chrono::minutes(5), this, &ChatPage::removeOldFallbackKey);
- disconnect(this, &ChatPage::newSyncResponse, this, &ChatPage::startRemoveFallbackKeyTimer);
+ disconnect(
+ this, &ChatPage::newSyncResponse, this, &ChatPage::startRemoveFallbackKeyTimer);
},
Qt::QueuedConnection);
|