mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Fixed searching for new anime shows, unicode issues resolved and Naruto does indeed work!
This commit is contained in:
parent
1e8f3e2883
commit
d07976f057
1 changed files with 2 additions and 2 deletions
|
@ -163,9 +163,9 @@ class AllShowsListUI:
|
|||
continue
|
||||
|
||||
if 'seriesname' in curShow:
|
||||
seriesnames.append(str(curShow['seriesname']))
|
||||
seriesnames.append(unicode(curShow['seriesname']))
|
||||
if 'aliasnames' in curShow:
|
||||
seriesnames.extend(str(curShow['aliasnames']).split('|'))
|
||||
seriesnames.extend(unicode(curShow['aliasnames']).split('|'))
|
||||
|
||||
for name in seriesnames:
|
||||
if searchterm.lower() in name.lower():
|
||||
|
|
Loading…
Reference in a new issue