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

Commit b5a17485 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

Change-Id: I2c754891a9b52000642b3d05673d3f17ef170c6a
parents ad036e8a 69e7b627
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;
        }
    }