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

Commit 86d111da authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "MAP: Fix New Message status when maxListCount is 0"

parents 9f7390ce 183f8574
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;
        }
    }