From 802bb3a7577334e48b269aaa75b0f887be2cbf7e Mon Sep 17 00:00:00 2001 From: Sparky Date: Sat, 23 Feb 2019 10:29:42 -0500 Subject: [PATCH] Make types more consistent There is no instance I can find where these values are ever *actually* strings. Changing them to boolean improves consistency. --- .../emby-webcomponents/browserdeviceprofile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bower_components/emby-webcomponents/browserdeviceprofile.js b/src/bower_components/emby-webcomponents/browserdeviceprofile.js index 7b37a0cdb1..ad5237fde8 100644 --- a/src/bower_components/emby-webcomponents/browserdeviceprofile.js +++ b/src/bower_components/emby-webcomponents/browserdeviceprofile.js @@ -751,7 +751,7 @@ define(['browser'], function (browser) { Condition: 'Equals', Property: 'IsSecondaryAudio', Value: 'false', - IsRequired: 'false' + IsRequired: false }); } @@ -780,7 +780,7 @@ define(['browser'], function (browser) { Condition: 'Equals', Property: 'IsSecondaryAudio', Value: 'false', - IsRequired: 'false' + IsRequired: false } ] }); @@ -913,4 +913,4 @@ define(['browser'], function (browser) { return profile; }; -}); \ No newline at end of file +});