Merge pull request #3067 from vector-im/matthew/fix-badge-spam
only recalculate favicon if it changesrevert-3067-matthew/fix-badge-spam
						commit
						f9db7f017d
					
				|  | @ -58,6 +58,7 @@ 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
 | ||||
|  |  | |||
|  | @ -60,11 +60,13 @@ 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(); | ||||
|     } | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 David Baker
						David Baker