mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-08 07:56:55 -04:00
fixup! state store: change schema for send_queue_events table
This commit is contained in:
@@ -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?;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user