Adjust content-type request timeout

This commit is contained in:
Tanner Collin 2020-08-14 03:57:43 +00:00
parent 472af76d1a
commit 6576eb1bac

View File

@ -65,9 +65,9 @@ def get_content_type(url):
try:
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0'}
return requests.get(url, headers=headers, timeout=2).headers['content-type']
return requests.get(url, headers=headers, timeout=10).headers['content-type']
except:
return 'text/'
return ''
def update_story(story, is_manual=False):
res = {}