mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-11 01:23:38 +08:00
Merge remote-tracking branch 'origin/development' into development
This commit is contained in:
commit
18624f2e34
1 changed files with 5 additions and 1 deletions
|
@ -63,7 +63,11 @@ def get_video(path, title, sceneName, use_scenename, providers=None, media_type=
|
|||
video.used_scene_name = dont_use_actual_file
|
||||
video.original_name = original_name
|
||||
video.original_path = original_path
|
||||
refine_video(video)
|
||||
try:
|
||||
refine_video(video)
|
||||
except Exception as e:
|
||||
logging.debug('BAZARR Error trying to refine this file: ' + path)
|
||||
pass
|
||||
return video
|
||||
|
||||
except:
|
||||
|
|
Loading…
Reference in a new issue