From: Thibaut Girka Date: Wed, 28 Aug 2019 18:55:23 +0000 (+0200) Subject: Fix crashes from favico.js crashing the entire web app X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=79725f659d5e9c449df0ff73f9363407a0a064bd;p=mastodon.git Fix crashes from favico.js crashing the entire web app --- diff --git a/app/javascript/flavours/glitch/features/ui/index.js b/app/javascript/flavours/glitch/features/ui/index.js index be1a5343a..dbfaf1220 100644 --- a/app/javascript/flavours/glitch/features/ui/index.js +++ b/app/javascript/flavours/glitch/features/ui/index.js @@ -366,7 +366,11 @@ class UI extends React.Component { if (this.props.unreadNotifications != prevProps.unreadNotifications || this.props.showFaviconBadge != prevProps.showFaviconBadge) { if (this.favicon) { - this.favicon.badge(this.props.showFaviconBadge ? this.props.unreadNotifications : 0); + try { + this.favicon.badge(this.props.showFaviconBadge ? this.props.unreadNotifications : 0); + } catch (err) { + console.error(err); + } } } }