1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fixed searching for new anime shows, unicode issues resolved and Naruto does indeed work!

This commit is contained in:
echel0n 2014-06-07 01:45:21 -07:00
parent 1e8f3e2883
commit d07976f057

View File

@ -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():