Fix doodstream

This commit is contained in:
Alhaziel01
2022-02-26 17:27:20 +01:00
parent 87cfef27ea
commit e3544248ee

View File

@@ -12,7 +12,7 @@ def test_video_exists(page_url):
response = scraper.get(page_url)
if response.status_code == 404 or 'File you are looking for is not found' in response.text:
if response.status_code == 404 or 'Not Found' in response.text:
return False, config.get_localized_string(70449) % 'DooD Stream'
else:
data = response.text