mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
ignore exceptions in experimentalWarnings (alert)
This commit is contained in:
parent
2b962124a5
commit
5d94812220
@ -28,7 +28,7 @@ function showMessage(text, userSettingsKey, appHostFeature) {
|
||||
}
|
||||
|
||||
userSettings.set(userSettingsKey, '1', false);
|
||||
return alert(text);
|
||||
return alert(text).catch(() => { /* ignore exceptions */ });
|
||||
}
|
||||
|
||||
function showBlurayMessage() {
|
||||
|
Loading…
Reference in New Issue
Block a user