You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1921,6 +1921,7 @@ impl StateStore for SqliteStateStore {
1921
1921
// See comment in `save_send_queue_event`.
1922
1922
let parent_txn_id = parent_txn_id.to_string();
1923
1923
let own_txn_id = own_txn_id.to_string();
1924
+
1924
1925
self.acquire()
1925
1926
.await?
1926
1927
.with_transaction(move |txn| {
@@ -2026,7 +2027,7 @@ impl StateStore for SqliteStateStore {
2026
2027
.acquire()
2027
2028
.await?
2028
2029
.prepare(
2029
-
"SELECT own_transaction_id, parent_transaction_id, parent_key, content, enqueue_time FROM dependent_send_queue_events WHERE room_id = ? ORDER BY ROWID",
2030
+
"SELECT own_transaction_id, parent_transaction_id, parent_key, content, created_at FROM dependent_send_queue_events WHERE room_id = ? ORDER BY ROWID",
0 commit comments