Fix syntax error in redis query

This commit is contained in:
Mark Veidemanis 2020-05-31 21:54:43 +01:00
parent 45070b06e2
commit 8103c16253
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ def getUserByNick(name, nick):
warn("Entry doesn't exist: %s on %s - attempting auxiliary lookup" % (nick, mapspace))
#return False
# legacy code below - remove when map is reliable
usermatch = main.r.sscan(gnamespace, match=escape(nick)+"!*", count=-1)
usermatch = main.r.sscan(gnamespace, match=escape(nick)+"!*", count=999999999)
if usermatch[1] == []:
warn("No matches found for user query: %s on %s" % (nick, name))
return False