From 47d99885eef662d6e2b21a97c498f96565147be7 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Thu, 26 Jan 2017 12:15:30 +0000 Subject: [PATCH] Revert "only recalculate favicon if it changes" --- src/vector/platform/ElectronPlatform.js | 1 - src/vector/platform/WebPlatform.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/vector/platform/ElectronPlatform.js b/src/vector/platform/ElectronPlatform.js index 18ad4a5d5b..47bfd9907a 100644 --- a/src/vector/platform/ElectronPlatform.js +++ b/src/vector/platform/ElectronPlatform.js @@ -58,7 +58,6 @@ function platformFriendlyName() { export default class ElectronPlatform extends VectorBasePlatform { setNotificationCount(count: number) { - if (this.notificationCount === number) return; super.setNotificationCount(count); // this sometimes throws because electron is made of fail: // https://github.com/electron/electron/issues/7351 diff --git a/src/vector/platform/WebPlatform.js b/src/vector/platform/WebPlatform.js index dda22f3c04..2029822b61 100644 --- a/src/vector/platform/WebPlatform.js +++ b/src/vector/platform/WebPlatform.js @@ -60,13 +60,11 @@ export default class WebPlatform extends VectorBasePlatform { } setNotificationCount(count: number) { - if (this.notificationCount === number) return; super.setNotificationCount(count); this._updateFavicon(); } setErrorStatus(errorDidOccur: boolean) { - if (this.errorDidOccur === errorDidOccur) return; super.setErrorStatus(errorDidOccur); this._updateFavicon(); }