Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
LiuYi0526 committed Jan 20, 2025
2 parents d34223c + 87fc762 commit a584fd8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21593,7 +21593,8 @@ public void didReceivedNotification(int id, int account, final Object... args) {
final ArrayList<MessageObject> messages = new ArrayList<>();
MessageObject conversionMessage = null;
boolean conversion = false;
for (int msg_id : markAsDeletedMessages) {
for (int a = 0; a < markAsDeletedMessages.size(); a++) {
Integer msg_id = markAsDeletedMessages.get(a);
MessageObject msg = messagesDict[0].get(msg_id);
if (msg != null) {
if (msg.messageOwner != null && msg.messageOwner.video_processing_pending) {
Expand Down

0 comments on commit a584fd8

Please sign in to comment.