un paio di fix

This commit is contained in:
marco
2020-10-13 20:54:40 +02:00
parent ca9b53df5c
commit 65775228b3
3 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ def test_video_exists(page_url):
page = httptools.downloadpage(page_url)
global data
data = page.data
if page.code == 404:
if page.code == 404 or 'File is no longer available' in data:
return False, config.get_localized_string(70449)
return True, ""