NotificationsModel: Don't crash if connection is nullptr
This can legitimately happen
This commit is contained in:
committed by
Tobias Fella
parent
1ceffe6a2e
commit
9ad64b990d
@@ -92,7 +92,9 @@ void NotificationsModel::setConnection(NeoChatConnection *connection)
|
|||||||
|
|
||||||
void NotificationsModel::loadData()
|
void NotificationsModel::loadData()
|
||||||
{
|
{
|
||||||
Q_ASSERT(m_connection);
|
if (!m_connection) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (m_job || (m_notifications.size() && m_nextToken.isEmpty())) {
|
if (m_job || (m_notifications.size() && m_nextToken.isEmpty())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user