Fix loading forwarded media (#2934)

This commit is contained in:
Alexander Zinchuk 2023-04-06 08:20:38 +02:00
parent 5659e8c1f9
commit 576f052711

View File

@ -1639,6 +1639,8 @@ function handleMultipleLocalMessagesUpdate(
if (u instanceof GramJs.UpdateMessageID) {
const localMessage = localMessages[u.randomId.toString()];
handleLocalMessageUpdate(localMessage, u);
} else {
handleUpdates(u);
}
});
}