Merge change 23667 into eclair

* changes:
  Fix the -1 unread count bug.
This commit is contained in:
Android (Google) Code Review
2009-09-02 13:15:52 -07:00

View File

@@ -1551,7 +1551,7 @@ public final class Gmail {
if (unreadConversations == null) {
return 0;
} else {
return unreadConversations;
return unreadConversations < 0 ? 0 : unreadConversations;
}
}