From 22cb47a8c34dd10385bfeec51469859679ec75e0 Mon Sep 17 00:00:00 2001 From: pipcat Date: Sat, 21 Jul 2018 18:54:29 +0200 Subject: [PATCH] =?UTF-8?q?Correcci=C3=B3n=20powvideo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin.video.alfa/servers/powvideo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.video.alfa/servers/powvideo.py b/plugin.video.alfa/servers/powvideo.py index 2696c972..1ccfd16b 100755 --- a/plugin.video.alfa/servers/powvideo.py +++ b/plugin.video.alfa/servers/powvideo.py @@ -39,5 +39,5 @@ def get_video_url(page_url, premium=False, user="", password="", video_password= def decode_powvideo_url(url): tria = re.compile('[0-9a-z]{40,}', re.IGNORECASE).findall(url)[0] gira = tria[::-1] - x = gira[:1] + gira[2:] + x = gira[:2] + gira[3:] return re.sub(tria, x, url)