mirror of https://github.com/morpheus65535/bazarr
Fixe for malformed string
This commit is contained in:
parent
bcf5650454
commit
797499a92e
|
@ -170,7 +170,11 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<%
|
<%
|
||||||
|
if details[11] is not None:
|
||||||
missing_subs_languages = ast.literal_eval(details[11])
|
missing_subs_languages = ast.literal_eval(details[11])
|
||||||
|
else:
|
||||||
|
missing_subs_langauges = []
|
||||||
|
end
|
||||||
from get_subtitle import search_active
|
from get_subtitle import search_active
|
||||||
if missing_subs_languages is not None:
|
if missing_subs_languages is not None:
|
||||||
%>
|
%>
|
||||||
|
|
Loading…
Reference in New Issue