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

Commit e02678bd authored by Hemant Gupta's avatar Hemant Gupta Committed by android-build-merger
Browse files

Merge "MAP: Fix New Message status when maxListCount is 0" am: 0f00b473 am: 69e7b627

am: b5a17485

Change-Id: Ib0e2aeb5957d001b3dc8fa67b56620f5709a85a1
parents 47ce9220 b5a17485
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ public class BluetoothMapMessageListing {
    public void add(BluetoothMapMessageListingElement element) {
        mList.add(element);
        /* update info regarding whether the list contains unread messages */
        if (element.getReadBool()) {
        if (!element.getReadBool()) {
            mHasUnread = true;
        }
    }