mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 14:14:56 -04:00
Fix a bug in the background task for purging chain cover. (#9583)
This commit is contained in:
parent
67b979bfa1
commit
918f6ed827
2 changed files with 2 additions and 1 deletions
|
@ -969,7 +969,7 @@ class EventsBackgroundUpdatesStore(SQLBaseStore):
|
|||
event_id = ""
|
||||
for event_id, chain_id, sequence_number, has_event in rows:
|
||||
if not has_event:
|
||||
unreferenced_event_ids.append(event_id)
|
||||
unreferenced_event_ids.append((event_id,))
|
||||
unreferenced_chain_id_tuples.append((chain_id, sequence_number))
|
||||
|
||||
# Delete the unreferenced auth chains from event_auth_chain_links and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue