diff options
author | morpheus65535 <[email protected]> | 2023-09-29 13:51:03 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-09-29 13:51:03 -0400 |
commit | 807621a612a0734e91b8271278099f7d950d01de (patch) | |
tree | 2c754b5429e861080d981825bd63d3bca2fa16d4 | |
parent | 166d0ccc95112173acf6f6967b2d13cbb5d662c9 (diff) | |
download | bazarr-807621a612a0734e91b8271278099f7d950d01de.tar.gz bazarr-807621a612a0734e91b8271278099f7d950d01de.zip |
Fixed an additional issue with 85d300f94ef60ef60416786a80db2d89917b8266. #2243
-rw-r--r-- | bazarr/subtitles/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/subtitles/processing.py b/bazarr/subtitles/processing.py index aa423285b..c5345966e 100644 --- a/bazarr/subtitles/processing.py +++ b/bazarr/subtitles/processing.py @@ -149,7 +149,7 @@ def process_subtitle(subtitle, media_type, audio_language, path, max_score, is_u reversed_subtitles_path=reversed_subtitles_path, hearing_impaired=subtitle.language.hi, matched=list(subtitle.matches or []), - not_matched=_get_not_matched(subtitle, media_type)) + not_matched=_get_not_matched(subtitle, media_type)) or [], def _get_not_matched(subtitle, media_type): |