mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
use strict comparison
Co-Authored-By: Julien Machiels <julien.machiels@protonmail.com>
This commit is contained in:
parent
d524c25258
commit
2f44701a03
@ -21,7 +21,7 @@ define(['appStorage', 'events'], function (appStorage, events) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
AppSettings.prototype.enableSystemExternalPlayers = function (val) {
|
AppSettings.prototype.enableSystemExternalPlayers = function (val) {
|
||||||
if (val != null) {
|
if (val !== null) {
|
||||||
this.set('enableSystemExternalPlayers', val.toString());
|
this.set('enableSystemExternalPlayers', val.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user