fix favicon logic (#175)

This commit is contained in:
Nolan Lawson 2018-04-19 09:34:56 -07:00 committed by GitHub
parent 979b4afc89
commit 18c3064801
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,10 +8,10 @@ export function notificationObservers (store) {
if (!process.browser) {
return
}
if (currentFaviconHasNotifications === hasNotifications) {
return
}
scheduleIdleTask(() => {
if (currentFaviconHasNotifications === hasNotifications) {
return
}
setFavicon(hasNotifications ? '/favicon-alert.png' : '/favicon.png')
currentFaviconHasNotifications = !currentFaviconHasNotifications
})