fix: incorrect variable name use in newroom tool
This commit is contained in:
parent
11f11a369c
commit
ab62ecb877
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class Newroom(BaseTool):
|
|||
|
||||
with closing(self.bot.database.cursor()) as cursor:
|
||||
cursor.execute(
|
||||
"SELECT space_id FROM user_spaces WHERE user_id = ? AND active = TRUE", (event.sender,))
|
||||
"SELECT space_id FROM user_spaces WHERE user_id = ? AND active = TRUE", (self.user,))
|
||||
space = cursor.fetchone()
|
||||
|
||||
if space:
|
||||
|
|
Loading…
Reference in a new issue