From 8ae7991fc81d26275b1b1e9e9ed1159e99032af4 Mon Sep 17 00:00:00 2001 From: cwmcd Date: Sat, 5 Jun 2021 13:10:53 -0700 Subject: [PATCH] Update plex.py correction to the format of the data source for plex. in the beginning of the file it states 'url' instead of 'host' which shows the wrong info in the right info pane and also breaks the data source. changing it to 'host' fixes the issue, the correct information is shown in the right info pane and the data source works correctly. --- dashmachine/platform/plex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashmachine/platform/plex.py b/dashmachine/platform/plex.py index 15ea3763..d5670318 100644 --- a/dashmachine/platform/plex.py +++ b/dashmachine/platform/plex.py @@ -4,7 +4,7 @@ ```ini [variable_name] platform = plex -url = http://plex_host:plex_port +host = http://plex_host:plex_port token = plex_token value_template = {{ value_template }} ```