fix: servers/decrypters/zcrypt.py

per i link rapidcript verso verystream
This commit is contained in:
greko17
2019-11-05 23:34:36 +01:00
parent 09631d585f
commit e5b6c0a790
+3 -2
View File
@@ -47,7 +47,8 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
data, status = unshortenit.unshorten(url) data, status = unshortenit.unshorten(url)
logger.info("Data - Status zcrypt xshield.net: [%s] [%s] " %(data, status)) logger.info("Data - Status zcrypt xshield.net: [%s] [%s] " %(data, status))
elif 'vcrypt.net' in url: elif 'vcrypt.net' in url:
if 'myfoldersakstream.php' in url or '/verys/' in url: continue if 'myfoldersakstream.php' in url or '/verys/' in url:
continue
else: else:
from lib import unshortenit from lib import unshortenit
data, status = unshortenit.unshorten(url) data, status = unshortenit.unshorten(url)
@@ -88,7 +89,7 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
for url in matches: for url in matches:
if url not in encontrados: if url not in encontrados:
if 'https://rapidcrypt.net/open/' in url: if 'https://rapidcrypt.net/open/' in url or 'https://rapidcrypt.net/verys/' in url:
continue continue
logger.info(" url=" + url) logger.info(" url=" + url)
encontrados.add(url) encontrados.add(url)