Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/81159a09789aa0251c5a6935ff06ae9e886e7a05 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added error logging when trying to determine malformed audio track languages.

pull/2252/head v1.3.1-beta.2
morpheus65535 2 years ago
parent e7703ca5a0
commit 81159a0978

@ -93,6 +93,11 @@ def embedded_audio_reader(file, file_size, episode_file_id=None, movie_file_id=N
audio_list.append(None)
continue
if isinstance(detected_language['language'], str):
logging.error(f"Cannot identify audio track language for this file: {file}. Value detected is "
f"{detected_language['language']}.")
continue
alpha3 = _handle_alpha3(detected_language)
language = language_from_alpha3(alpha3)

Loading…
Cancel
Save