We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b3780 commit c8db98aCopy full SHA for c8db98a
core/pubsub.py
@@ -161,7 +161,7 @@ async def subscribe(self):
161
WHERE id IN (SELECT id FROM to_delete)
162
RETURNING id
163
""").format(table=sql.Identifier(self.name)), (self.node.guild_id, self.node.name)):
164
- self.read_queue.put_nowait(row['id'])
+ self.read_queue.put_nowait(row[0])
165
await cursor.execute(sql.SQL("LISTEN {table}").format(table=sql.Identifier(self.name)))
166
gen = conn.notifies()
167
async for n in gen:
0 commit comments