From 50c5407a4615c0d5aa279c019e0b9b79d0a15e47 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sat, 2 Jun 2018 09:32:05 -0700 Subject: [PATCH] Fix Monitor Remote Access checkbox (Plex server update chaged bool to int) --- data/interfaces/default/settings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html index 28e2a834..d9d2cb53 100644 --- a/data/interfaces/default/settings.html +++ b/data/interfaces/default/settings.html @@ -2358,7 +2358,7 @@ $(document).ready(function() { data: { pref: 'PublishServerOnPlexOnlineKey' }, async: true, success: function(data) { - if (data !== 'true') { + if (data === 'false' || data === '0') { $("#remoteAccessCheck").html("Remote access must be enabled on your Plex Server. Click here for help."); $("#monitor_remote_access").attr("checked", false).attr("disabled", true); }