Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Richard van der Hoff
47d99885ee Revert "only recalculate favicon if it changes" 2017-01-26 12:15:30 +00:00
2 changed files with 0 additions and 3 deletions

View file

@ -58,7 +58,6 @@ function platformFriendlyName() {
export default class ElectronPlatform extends VectorBasePlatform { export default class ElectronPlatform extends VectorBasePlatform {
setNotificationCount(count: number) { setNotificationCount(count: number) {
if (this.notificationCount === number) return;
super.setNotificationCount(count); super.setNotificationCount(count);
// this sometimes throws because electron is made of fail: // this sometimes throws because electron is made of fail:
// https://github.com/electron/electron/issues/7351 // https://github.com/electron/electron/issues/7351

View file

@ -60,13 +60,11 @@ export default class WebPlatform extends VectorBasePlatform {
} }
setNotificationCount(count: number) { setNotificationCount(count: number) {
if (this.notificationCount === number) return;
super.setNotificationCount(count); super.setNotificationCount(count);
this._updateFavicon(); this._updateFavicon();
} }
setErrorStatus(errorDidOccur: boolean) { setErrorStatus(errorDidOccur: boolean) {
if (this.errorDidOccur === errorDidOccur) return;
super.setErrorStatus(errorDidOccur); super.setErrorStatus(errorDidOccur);
this._updateFavicon(); this._updateFavicon();
} }