diff --git a/plugin.video.alfa/servers/streamplay.py b/plugin.video.alfa/servers/streamplay.py index 9ceae02b..cf8e0303 100644 --- a/plugin.video.alfa/servers/streamplay.py +++ b/plugin.video.alfa/servers/streamplay.py @@ -46,5 +46,5 @@ def get_video_url(page_url, premium=False, user="", password="", video_password= def decode_video_url(url): tria = re.compile('[0-9a-z]{40,}', re.IGNORECASE).findall(url)[0] gira = tria[::-1] - x = gira[:2] + gira[3:] + x = gira[:3] + gira[4:] return re.sub(tria, x, url)