0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-04 10:18:52 +02:00
This commit is contained in:
Erik Johnston 2015-05-12 14:47:40 +01:00
parent e4eddf9b36
commit 30c72d377e

View file

@ -343,7 +343,6 @@ class EventFederationStore(SQLBaseStore):
for e_id, _ in prev_events
])
# Also delete from the backwards extremities table all ones that
# reference events that we have already seen
query = (
@ -352,7 +351,6 @@ class EventFederationStore(SQLBaseStore):
)
txn.executemany(query, [(e_id, room_id) for e_id, _ in prev_events])
txn.call_after(
self.get_latest_event_ids_in_room.invalidate, room_id
)