From a3f4c831fea55c54a4a59f23cfab1f75204b5f7a Mon Sep 17 00:00:00 2001 From: James Bunton Date: Thu, 20 Oct 2016 14:29:19 +1100 Subject: [PATCH] Fixed iView (thanks Charlie Bash) --- iview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iview.py b/iview.py index 03f730b..b23af38 100644 --- a/iview.py +++ b/iview.py @@ -20,7 +20,7 @@ class IviewEpisodeNode(Node): def find_hls_url(self, playlist): for video in playlist: if video["type"] == "program": - return video["hls-high"] + return video["hls-high"].replace("http:", "https:") raise Exception("Missing hls-high program stream for " + self.video_key) def get_auth_details(self): -- 2.39.2