From aac49e11c3d6ce002856b8104227d5697c1b9e9e Mon Sep 17 00:00:00 2001 From: GeorgeRamga Date: Fri, 14 Dec 2018 00:36:31 -0600 Subject: [PATCH] fix repelis.live fix request to get embed link --- plugin.video.alfa/channels/repelislive.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin.video.alfa/channels/repelislive.py b/plugin.video.alfa/channels/repelislive.py index af733fb7..c4e331d9 100644 --- a/plugin.video.alfa/channels/repelislive.py +++ b/plugin.video.alfa/channels/repelislive.py @@ -168,6 +168,7 @@ def findvideos(item): matches = re.compile(patron, re.DOTALL).findall(data) for url, language in matches: + url = url.replace('&','&') data = httptools.downloadpage(url, follow_redirects=False, headers={'Referer':item.url}, only_headers=True) url = data.headers['location']