forked from MirrorHub/synapse
Don't delete the entire current_state_events table
This commit is contained in:
parent
47256cdde6
commit
4e2ffe79a4
1 changed files with 4 additions and 1 deletions
|
@ -209,7 +209,10 @@ class DataStore(RoomMemberStore, RoomStore,
|
|||
self._store_state_groups_txn(txn, event)
|
||||
|
||||
if current_state:
|
||||
txn.execute("DELETE FROM current_state_events")
|
||||
txn.execute(
|
||||
"DELETE FROM current_state_events WHERE room_id = ?",
|
||||
(event.room_id,)
|
||||
)
|
||||
|
||||
for s in current_state:
|
||||
self._simple_insert_txn(
|
||||
|
|
Loading…
Reference in a new issue