Workaround for chat listview crashes (no last item, why?)
This commit is contained in:
parent
a04332d4b6
commit
1a3768b79b
1 changed files with 5 additions and 1 deletions
|
@ -237,7 +237,11 @@ int ChatModel::calculateLastKnownMessageId()
|
|||
qDebug() << "[ChatModel] lastKnownMessageId" << lastKnownMessageId;
|
||||
qDebug() << "[ChatModel] size messageIndexMap" << this->messageIndexMap.size();
|
||||
qDebug() << "[ChatModel] contains ID?" << this->messageIndexMap.contains(lastKnownMessageId);
|
||||
int listInboxPosition = this->messageIndexMap.value(lastKnownMessageId, this->messages.size() - 1).toInt();
|
||||
// TODO: List sometimes crashes if index is set to the last item. Trying with the second last for now.
|
||||
int listInboxPosition = this->messageIndexMap.value(lastKnownMessageId, this->messages.size() - 2).toInt();
|
||||
if (listInboxPosition > this->messages.size() - 2 ) {
|
||||
listInboxPosition = this->messages.size() - 2;
|
||||
}
|
||||
qDebug() << "[ChatModel] Last known message is at position" << listInboxPosition;
|
||||
return listInboxPosition;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue