mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 14:07:16 +02:00
Fix attr search with non-string query. Resolve #1760
This commit is contained in:
parent
c9b7f921bd
commit
f67a68bd3b
1 changed files with 1 additions and 1 deletions
|
|
@ -405,7 +405,7 @@ class ObjectDBManager(TypedObjectManager):
|
|||
if not matches:
|
||||
# no matches found - check if we are dealing with N-keyword
|
||||
# query - if so, strip it.
|
||||
match = _MULTIMATCH_REGEX.match(searchdata)
|
||||
match = _MULTIMATCH_REGEX.match(str(searchdata))
|
||||
match_number = None
|
||||
if match:
|
||||
# strips the number
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue