Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 016f2406 authored by Amit Mahajan's avatar Amit Mahajan Committed by Gerrit Code Review
Browse files

Merge "Remove dup messageId log"

parents 3a91416e 801063e8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1388,7 +1388,7 @@ public abstract class InboundSmsHandler extends StateMachine {
                if (cursor.getInt(
                        PDU_DELETED_FLAG_PROJECTION_INDEX_MAPPING.get(DELETED_FLAG_COLUMN)) == 1) {
                    logWithLocalLog("checkAndHandleDuplicate: Discarding duplicate "
                            + "message/segment: " + tracker, tracker.getMessageId());
                            + "message/segment: " + tracker);
                    logDupPduMismatch(cursor, tracker);
                    return true;   // reject message
                } else {
@@ -1400,7 +1400,7 @@ public abstract class InboundSmsHandler extends StateMachine {
                        deleteFromRawTable(exactMatchQuery.first, exactMatchQuery.second,
                                DELETE_PERMANENTLY);
                        logWithLocalLog("checkAndHandleDuplicate: Replacing duplicate message: "
                                + tracker, tracker.getMessageId());
                                + tracker);
                        logDupPduMismatch(cursor, tracker);
                    }
                }