Merge change 23667 into eclair
* changes: Fix the -1 unread count bug.
This commit is contained in:
@@ -1551,7 +1551,7 @@ public final class Gmail {
|
|||||||
if (unreadConversations == null) {
|
if (unreadConversations == null) {
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
return unreadConversations;
|
return unreadConversations < 0 ? 0 : unreadConversations;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user