mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-27 00:57:46 +08:00
Fix for #630
This commit is contained in:
parent
474f9368fd
commit
73df77984d
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ class SubtitleStreamParser(BaseParser):
|
|||
"""Returns a string """
|
||||
tags = data.get("tags", None)
|
||||
if tags:
|
||||
info = tags.get("language", None)
|
||||
info = tags.get("language", None) or tags.get("LANGUAGE", None)
|
||||
return info, (info or "null")
|
||||
return None, "null"
|
||||
|
||||
|
|
Loading…
Reference in a new issue