diff --git a/plugin.video.alfa/servers/decrypters/expurl.py b/plugin.video.alfa/servers/decrypters/expurl.py index e3b025fe..3d7e217c 100755 --- a/plugin.video.alfa/servers/decrypters/expurl.py +++ b/plugin.video.alfa/servers/decrypters/expurl.py @@ -1,23 +1,14 @@ # -*- coding: utf-8 -*- -import urlparse - from lib import unshortenit -SERVICES_SHORT = ["adf.ly", "sh.st", "bit.ly", "ul.to"] - - def expand_url(url): e = unshortenit.UnshortenIt() + estado = 200 - while Es_Corto(url): + while estado != 0: long_url, estado = e.unshorten(url) url = long_url return long_url - -def Es_Corto(url): - server = urlparse.urlsplit(url).netloc - Corto = (server in SERVICES_SHORT) - return Corto