From 04001850963a68cbcc7b7ac87db072ba27e72566 Mon Sep 17 00:00:00 2001 From: Intel1 Date: Sat, 5 Aug 2017 08:59:07 -0500 Subject: [PATCH] Update fastplay.py --- plugin.video.alfa/servers/fastplay.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugin.video.alfa/servers/fastplay.py b/plugin.video.alfa/servers/fastplay.py index 709b9fa6..d01bc6fc 100755 --- a/plugin.video.alfa/servers/fastplay.py +++ b/plugin.video.alfa/servers/fastplay.py @@ -12,9 +12,8 @@ def test_video_exists(page_url): logger.info("(page_url='%s')" % page_url) data = httptools.downloadpage(page_url).data - if "Object not found" in data: + if "Object not found" in data or "longer exists on our servers" in data: return False, "[Fastplay] El archivo no existe o ha sido borrado" - return True, ""