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

Commit 56983408 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: 86d111da am: 08372761

am: 6559f9c9

Change-Id: Ib0e2aeb5957d001b3dc8fa67b56620f5709a85a1
parents 6640a9fe 6559f9c9
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;
        }
    }