mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
lowercase is:foo searches
This commit is contained in:
parent
7d8904a65d
commit
4e83a67e00
1 changed files with 1 additions and 1 deletions
|
@ -1861,7 +1861,7 @@ where id = :id""", pending)
|
|||
token = token[4:]
|
||||
type = SEARCH_TAG
|
||||
elif token.startswith("is:"):
|
||||
token = token[3:]
|
||||
token = token[3:].lower()
|
||||
type = SEARCH_TYPE
|
||||
elif token.startswith("fid:") and len(token) > 4:
|
||||
dec = token[4:]
|
||||
|
|
Loading…
Reference in a new issue