Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3355 from matrix-org/rav/fix_federation_backfill
Browse files Browse the repository at this point in the history
Fix federation backfill from sqlite servers
  • Loading branch information
richvdh authored Jun 7, 2018
2 parents 0160f66 + d3a8c9c commit e2acf53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/storage/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def _get_state_groups_from_groups_txn(self, txn, groups, types=None):
for typ in types:
if typ[1] is None:
where_clauses.append("(type = ?)")
where_args.extend(typ[0])
where_args.append(typ[0])
wildcard_types = True
else:
where_clauses.append("(type = ? AND state_key = ?)")
Expand Down

0 comments on commit e2acf53

Please sign in to comment.