forked from tanner/qotnews
Fix crash from domain and ext check bug
This commit is contained in:
parent
e4f81472fc
commit
f8998b687e
|
@ -94,11 +94,11 @@ def update_story(story):
|
||||||
|
|
||||||
if story.get('url', '') and not story.get('text', ''):
|
if story.get('url', '') and not story.get('text', ''):
|
||||||
if any([story['url'].endswith(ext) for ext in INVALID_FILES]):
|
if any([story['url'].endswith(ext) for ext in INVALID_FILES]):
|
||||||
logging.info('URL invalid file type ({})'.format(ext))
|
logging.info('URL invalid file type')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if any([domain in story['url'] for domain in INVALID_DOMAINS]):
|
if any([domain in story['url'] for domain in INVALID_DOMAINS]):
|
||||||
logging.info('URL invalid domain ({})'.format(domain))
|
logging.info('URL invalid domain')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
logging.info('Getting article ' + story['url'])
|
logging.info('Getting article ' + story['url'])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user