fix(app): remove errant comment from prev impl

This commit is contained in:
psychedelicious
2025-06-29 13:31:27 +10:00
parent 126dcc96c0
commit 5c66dfed8e

View File

@@ -142,7 +142,7 @@ class SqliteSessionQueue(SessionQueueBase):
WHERE batch_id = ?
ORDER BY item_id DESC;
""",
(batch.batch_id,) # batch_id is the 4th element in the tuple
(batch.batch_id,)
)
item_ids = [row[0] for row in cursor.fetchall()]
except Exception: