fix Badge * mark

This commit is contained in:
Tatsuya Niwa 2016-01-21 22:05:34 +09:00
parent d4cc42299c
commit dc10546596

View file

@ -251,7 +251,7 @@ var showUnreadBadge = function(unreadCount, mentionCount) {
if (mentionCount > 0) {
remote.app.dock.setBadge(mentionCount.toString());
} else if (mentionCount < unreadCount) {
remote.app.dock.setBadge('*');
remote.app.dock.setBadge('');
} else {
remote.app.dock.setBadge('');
}