mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Don't delete the entire current_state_events table
This commit is contained in:
parent
47256cdde6
commit
4e2ffe79a4
@ -209,7 +209,10 @@ class DataStore(RoomMemberStore, RoomStore,
|
|||||||
self._store_state_groups_txn(txn, event)
|
self._store_state_groups_txn(txn, event)
|
||||||
|
|
||||||
if current_state:
|
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:
|
for s in current_state:
|
||||||
self._simple_insert_txn(
|
self._simple_insert_txn(
|
||||||
|
Loading…
Reference in New Issue
Block a user