use strict comparison

Co-Authored-By: Julien Machiels <julien.machiels@protonmail.com>
This commit is contained in:
dkanada 2020-04-02 05:10:46 +09:00 committed by GitHub
parent d524c25258
commit 2f44701a03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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());
}