mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-27 01:57:33 +00:00
Batch editor bug correction #41
This commit is contained in:
parent
ec7bb3a836
commit
04c496ebf4
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ def edit_serieseditor():
|
||||||
c = conn.cursor()
|
c = conn.cursor()
|
||||||
|
|
||||||
for serie in series:
|
for serie in series:
|
||||||
if len(lang) > 0:
|
if str(lang) != "['']":
|
||||||
if str(lang) == "['None']":
|
if str(lang) == "['None']":
|
||||||
lang = 'None'
|
lang = 'None'
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue