From 57a56e5039b07e6201c20f7ae9e5a6797486e333 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 6 Dec 2020 11:14:27 -0500 Subject: [PATCH] test --- fHDHR/origin/origin_channels.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fHDHR/origin/origin_channels.py b/fHDHR/origin/origin_channels.py index 5691ee8..f07372c 100644 --- a/fHDHR/origin/origin_channels.py +++ b/fHDHR/origin/origin_channels.py @@ -18,8 +18,8 @@ class OriginChannels(): api_json = self.fhdhr.web.session.get(channel_json_url).json() for channel_dict in api_json['channel']['item']: - if "is_simulcast" in list(channel_dict["properties"].keys()): - if channel_dict["properties"]["is_simulcast"] == "true": + if "simulcast_only" in list(channel_dict["properties"].keys()): + if channel_dict["properties"]["simulcast_only"] == "true": clean_station_item = { "name": channel_dict["title"],