Преглед на файлове

fix: incorrect variable name use in newroom tool

Kumi преди 11 месеца
родител
ревизия
ab62ecb877
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/gptbot/tools/newroom.py

+ 1 - 1
src/gptbot/tools/newroom.py

@@ -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: