From 3b6c7e0e0ebd5cead510d46b337c50b4935f364a Mon Sep 17 00:00:00 2001 From: Intel1 <25161862+Intel11@users.noreply.github.com> Date: Wed, 6 Jun 2018 12:08:04 -0500 Subject: [PATCH] clipwatching: updated test_video_exists --- plugin.video.alfa/servers/clipwatching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.video.alfa/servers/clipwatching.py b/plugin.video.alfa/servers/clipwatching.py index f1858955..9494f1e5 100644 --- a/plugin.video.alfa/servers/clipwatching.py +++ b/plugin.video.alfa/servers/clipwatching.py @@ -8,7 +8,7 @@ from platformcode import logger def test_video_exists(page_url): logger.info("(page_url='%s')" % page_url) data = httptools.downloadpage(page_url).data - if "File Not Found" in data: + if "File Not Found" in data or "File was deleted" in data: return False, "[clipwatching] El video ha sido borrado" return True, ""