Fixed a missed update to the search functionality that now should use db_tagtype rather than the old and hackish category-prefix solution. Resolves #497.

This commit is contained in:
Griatch 2014-04-06 10:21:06 +02:00
parent 87d621bcbc
commit 8046679980
2 changed files with 4 additions and 5 deletions

View file

@ -1898,8 +1898,7 @@ class CmdFind(MuxCommand):
nresults = results.count()
if not nresults:
# no matches on the keys. Try aliases instead.
results = ObjectDB.objects.filter(db_tags__db_key__iexact=searchstring, db_tags__db_category__iexact="object_alias")
#results = ObjectDB.db_aliases.filter(db_key=searchstring)
results = ObjectDB.objects.filter(db_tags__db_key__iexact=searchstring, db_tags__db_tagtype__iexact="alias")
if "room" in switches:
results = results.filter(db_location__isnull=True)
if "exit" in switches: