Tweak regex to fix incorrect match (#237)

This commit is contained in:
Serene
2021-03-30 17:08:08 +10:00
committed by Ali Parlakci
parent 5d86c2d400
commit 44889d5264
2 changed files with 5 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ class DownloadFactory:
return Youtube
elif re.match(url_beginning + r'i\.redd\.it.*', url):
return Direct
elif re.match(url_beginning + r'.*\..{3,4}$', url):
elif re.match(url_beginning + r'.*/.*\.\w{3,4}$', url):
return Direct
else:
raise NotADownloadableLinkError('No downloader module exists for url {}'.format(url))