Skip to content

Commit

Permalink
fixup! state store: change schema for send_queue_events table
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjbvr committed Jun 26, 2024
1 parent 7f0b035 commit 29ac3e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/matrix-sdk-sqlite/src/state_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?;

Expand Down

0 comments on commit 29ac3e0

Please sign in to comment.