[SubtitleConvertor] Do not attempt to convert unsupported formats

This commit is contained in:
ClosedPort22 2024-08-20 18:48:20 +08:00
parent f0bb28504c
commit e464e56115
No known key found for this signature in database

View file

@ -972,9 +972,9 @@ def run(self, info):
if ext == new_ext: if ext == new_ext:
self.to_screen(f'Subtitle file for {new_ext} is already in the requested format') self.to_screen(f'Subtitle file for {new_ext} is already in the requested format')
continue continue
elif ext == 'json': elif ext not in self.SUPPORTED_EXTS:
self.to_screen( self.to_screen(
'You have requested to convert json subtitles into another format, ' f'You have requested to convert {ext} subtitles into another format, '
'which is currently not possible') 'which is currently not possible')
continue continue
old_file = sub['filepath'] old_file = sub['filepath']