diff --git a/src/scripts/settings/appSettings.js b/src/scripts/settings/appSettings.js index 31112d71e3..30fcf62e94 100644 --- a/src/scripts/settings/appSettings.js +++ b/src/scripts/settings/appSettings.js @@ -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()); }