mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Fix attr search with non-string query. Resolve #1760
This commit is contained in:
parent
21a5285954
commit
f4f43158a8
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