don't rescrape if simple.

This commit is contained in:
Jason Schwarzenberger
2020-12-10 16:25:51 +13:00
parent ce9694b70c
commit 4e5dc65461
2 changed files with 3 additions and 3 deletions

View File

@@ -134,9 +134,9 @@ def update_story(story, is_manual=False, urlref=None):
has_url = story.get('url') or False has_url = story.get('url') or False
has_text = story.get('text') or False has_text = story.get('text') or False
is_simple = story.get('scaper', '') == 'simple' #is_simple = story.get('scaper', '') == 'simple'
if has_url and (not has_text or is_simple): if has_url and not has_text:
if not get_content_type(story['url']).startswith('text/'): if not get_content_type(story['url']).startswith('text/'):
logging.info('URL invalid file type / content type:') logging.info('URL invalid file type / content type:')
logging.info(story['url']) logging.info(story['url'])