/browse: Fix handling of non-ascii saved searches

This commit is contained in:
Kovid Goyal
2010-10-26 08:17:02 -06:00
parent 284ca8f7a1
commit 9a93d3fd2d
+1 -1
View File
@@ -509,7 +509,7 @@ class BrowseServer(object):
hide_sort = 'true' if dt == 'series' else 'false'
if category == 'search':
which = unhexlify(cid)
which = unhexlify(cid).decode('utf-8')
try:
ids = self.search_cache('search:"%s"'%which)
except: