fixup! state store: change schema for send_queue_events table

This commit is contained in:
Benjamin Bouvier
2024-06-26 11:39:30 +02:00
parent 7f0b035e86
commit 29ac3e0dda

View File

@@ -1789,7 +1789,7 @@ impl StateStore for SqliteStateStore {
.acquire()
.await?
.prepare("SELECT room_id_val FROM send_queue_events", |mut stmt| {
stmt.query(())?.mapped(|row| Ok(row.get(0)?)).collect()
stmt.query(())?.mapped(|row| row.get(0)).collect()
})
.await?;