Skip to content

Commit

Permalink
fix: CME in ChatActivity didReceivedNotification
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Jan 17, 2025
1 parent 24600f3 commit 87fc762
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 87fc762

Please sign in to comment.