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

Commit 6559f9c9 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

Change-Id: I2c754891a9b52000642b3d05673d3f17ef170c6a
parents 30b93b17 08372761
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;
        }
    }