From 2f44701a03937436f61aed68b6a0f193ea19705d Mon Sep 17 00:00:00 2001 From: dkanada Date: Thu, 2 Apr 2020 05:10:46 +0900 Subject: [PATCH] use strict comparison Co-Authored-By: Julien Machiels --- src/scripts/settings/appSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); }