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

Commit 6f4a8a58 authored by Cedric Beust's avatar Cedric Beust
Browse files

Fix the -1 unread count bug.

Change-Id: I8b77ad3457504872928c1065d54f50c0618025b5
parent bb54f93f
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;
            }
        }