tiny change in intention clarity

This commit is contained in:
Wolfsblvt 2024-07-30 17:00:13 +02:00
parent bb4aa709e6
commit 0c50de2f44
1 changed files with 1 additions and 1 deletions

View File

@ -1726,7 +1726,7 @@ export function showMoreMessages() {
// If there are no messages displayed, or the message somehow has no mesid, we default to one higher than last message id,
// so the first "new" message being shown will be the last available message
if (!messageId) {
if (isNaN(messageId)) {
messageId = getLastMessageId() + 1;
}