Don't crash in UserListModel when there is no room
BUG: 466045
This commit is contained in:
@@ -217,6 +217,9 @@ int UserListModel::findUserPos(Quotient::User *user) const
|
||||
|
||||
int UserListModel::findUserPos(const QString &username) const
|
||||
{
|
||||
if (!m_currentRoom) {
|
||||
return 0;
|
||||
}
|
||||
return m_currentRoom->memberSorter().lowerBoundIndex(m_users, username);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user