From: James Bunton Date: Thu, 20 Oct 2016 03:29:19 +0000 (+1100) Subject: Fixed iView (thanks Charlie Bash) X-Git-Url: https://code.delx.au/webdl/commitdiff_plain/a3f4c831fea55c54a4a59f23cfab1f75204b5f7a Fixed iView (thanks Charlie Bash) --- 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):