This commit is contained in:
Matthew Hodgson 2018-03-11 20:10:25 +00:00
parent 9b334b3f97
commit 8713365265
2 changed files with 4 additions and 2 deletions

View file

@ -301,6 +301,8 @@ class StateGroupWorkerStore(SQLBaseStore):
args = [next_group]
if types:
args.extend(i for typ in types for i in typ)
if include_other_types:
args.extend(typ for (typ, _) in types)
txn.execute(
"SELECT type, state_key, event_id FROM state_groups_state"