From b42aae2eb99a0ec8100296ebf81b1621e42a006a Mon Sep 17 00:00:00 2001 From: danielr460 Date: Sun, 21 Jan 2018 14:59:37 -0500 Subject: [PATCH] =?UTF-8?q?Mejora=20en=20funci=C3=B3n=20test=5Fvideo=5Fexi?= =?UTF-8?q?sts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin.video.alfa/servers/flashx.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin.video.alfa/servers/flashx.py b/plugin.video.alfa/servers/flashx.py index cb325d53..6c33cac0 100644 --- a/plugin.video.alfa/servers/flashx.py +++ b/plugin.video.alfa/servers/flashx.py @@ -16,6 +16,8 @@ def test_video_exists(page_url): data = httptools.downloadpage(page_url, cookies=False).data if 'file was deleted' in data: return False, "[FlashX] El archivo no existe o ha sido borrado" + elif 'File Not Found' in data: + return False, "[FlashX] El archivo no existe" elif 'Video is processing now' in data: return False, "[FlashX] El archivo se está procesando"