mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge pull request #3355 from matrix-org/rav/fix_federation_backfill
Fix federation backfill from sqlite servers
This commit is contained in:
commit
e2acf536d4
@ -272,7 +272,7 @@ class StateGroupWorkerStore(SQLBaseStore):
|
|||||||
for typ in types:
|
for typ in types:
|
||||||
if typ[1] is None:
|
if typ[1] is None:
|
||||||
where_clauses.append("(type = ?)")
|
where_clauses.append("(type = ?)")
|
||||||
where_args.extend(typ[0])
|
where_args.append(typ[0])
|
||||||
wildcard_types = True
|
wildcard_types = True
|
||||||
else:
|
else:
|
||||||
where_clauses.append("(type = ? AND state_key = ?)")
|
where_clauses.append("(type = ? AND state_key = ?)")
|
||||||
|
Loading…
Reference in New Issue
Block a user