mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
use strict comparison
Co-Authored-By: Julien Machiels <julien.machiels@protonmail.com>
This commit is contained in:
parent
d524c25258
commit
2f44701a03
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ define(['appStorage', 'events'], function (appStorage, events) {
|
|||
};
|
||||
|
||||
AppSettings.prototype.enableSystemExternalPlayers = function (val) {
|
||||
if (val != null) {
|
||||
if (val !== null) {
|
||||
this.set('enableSystemExternalPlayers', val.toString());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue