mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Fix Monitor Remote Access checkbox (Plex server update chaged bool to int)
This commit is contained in:
parent
939755d3b7
commit
50c5407a46
1 changed files with 1 additions and 1 deletions
|
@ -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. <a target='_blank' href='${anon_url('https://support.plex.tv/hc/en-us/articles/200484543-Enabling-Remote-Access-for-a-Server')}'>Click here</a> for help.");
|
||||
$("#monitor_remote_access").attr("checked", false).attr("disabled", true);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue