Only attempt to setup push notifications on the first syncDone
This commit is contained in:
@@ -98,9 +98,11 @@ Controller::Controller(QObject *parent)
|
|||||||
if (m_accountRegistry.size() > oldAccountCount) {
|
if (m_accountRegistry.size() > oldAccountCount) {
|
||||||
auto connection = dynamic_cast<NeoChatConnection *>(m_accountRegistry.accounts()[m_accountRegistry.size() - 1]);
|
auto connection = dynamic_cast<NeoChatConnection *>(m_accountRegistry.accounts()[m_accountRegistry.size() - 1]);
|
||||||
connect(connection, &NeoChatConnection::syncDone, this, [this, connection]() {
|
connect(connection, &NeoChatConnection::syncDone, this, [this, connection]() {
|
||||||
connection->setupPushNotifications(m_endpoint);
|
|
||||||
NotificationsManager::instance().handleNotifications(connection);
|
NotificationsManager::instance().handleNotifications(connection);
|
||||||
});
|
});
|
||||||
|
connectSingleShot(connection, &NeoChatConnection::syncDone, this, [this, connection] {
|
||||||
|
connection->setupPushNotifications(m_endpoint);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
oldAccountCount = m_accountRegistry.size();
|
oldAccountCount = m_accountRegistry.size();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user