mirror of
https://github.com/koniu/recoll-webui.git
synced 2025-10-06 03:50:09 +02:00
py: fix error when search folder utf-8
This commit is contained in:
parent
f26a04e059
commit
15389e8f3b
1 changed files with 1 additions and 1 deletions
2
webui.py
2
webui.py
|
@ -150,7 +150,7 @@ def query_to_recoll_string(q):
|
|||
if len(q['after']) > 0 or len(q['before']) > 0:
|
||||
qs += " date:%s/%s" % (q['after'], q['before'])
|
||||
if q['dir'] != '<all>':
|
||||
qs += " dir:\"%s\" " % q['dir']
|
||||
qs += " dir:\"%s\" " % q['dir'].decode('utf-8')
|
||||
return qs
|
||||
#}}}
|
||||
#{{{ recoll_initsearch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue