Wrap AppBase.setupNightModeDetection() in try/catch because Safari doesn't support matchMedia change events.

This commit is contained in:
JustAMacUser 2019-12-13 13:39:52 -05:00
parent 0237dee980
commit b4dd03ba2a
1 changed files with 5 additions and 3 deletions

View File

@ -34,9 +34,11 @@ define(["dojo/_base/declare"], function (declare) {
if (window.matchMedia) {
const mql = window.matchMedia('(prefers-color-scheme: dark)');
mql.addEventListener("change", () => {
this.nightModeChanged(mql.matches);
});
try {
mql.addEventListener("change", () => {
this.nightModeChanged(mql.matches);
});
} catch (e) {}
this.nightModeChanged(mql.matches);
}