forked from rDrama/rDrama
1
0
Fork 0

allow all video formats in orgies

master
Aevann 2023-09-13 20:44:19 +03:00
parent 7511de69fc
commit 51494a7440
1 changed files with 1 additions and 1 deletions

View File

@ -1964,7 +1964,7 @@ def start_orgy(v):
elif re.match(twitch_regex, normalized_link):
orgy_type = 'twitch'
data = re.search(twitch_regex, normalized_link).group(3)
elif normalized_link.endswith('.mp4'):
elif any((normalized_link.lower().endswith(f'.{x}') for x in VIDEO_FORMATS)):
orgy_type = 'file'
data = normalized_link
else: