Fix KeyError: 'fallback_url'

This commit is contained in:
blank X 2020-12-04 11:44:50 +07:00
parent 9fcaaeb6cc
commit 47c2010f7f
1 changed files with 11 additions and 7 deletions

View File

@ -293,6 +293,7 @@ async def main():
url = None
break
else:
if 'fallback_url' in reddit_video:
url = reddit_video['fallback_url']
elif getattr(random_post, 'is_gallery', None):
files = []
@ -352,12 +353,15 @@ async def main():
gfyitem = apidata.get('gfyItem')
if gfyitem:
url = gfyitem.get('mp4Url', url)
elif random_post.is_reddit_media_domain and splitted[1] == '.gif' and preview:
preview = preview['images'][0]['variants']
elif random_post.is_reddit_media_domain and preview:
ppreview = preview['images'][0]
if splitted[1] == '.gif':
for i in ('mp4', 'gif'):
if i in preview:
url = preview[i]['source']['url']
if i in ppreview['variants']:
url = ppreview['variants'][i]['source']['url']
break
elif random_post.is_video:
url = ppreview['source']['url']
if url:
url = urlunparse(urlparse(url, 'https'))
await _download_file(filename, url)