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

Commit 682e30a8 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 23667 into eclair

* changes:
  Fix the -1 unread count bug.
parents 8ecd2aec 6f4a8a58
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1551,7 +1551,7 @@ public final class Gmail {
            if (unreadConversations == null) {
                return 0;
            } else {
                return unreadConversations;
                return unreadConversations < 0 ? 0 : unreadConversations;
            }
        }