mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 21:53:51 +01:00
Add missing param
This commit is contained in:
parent
61d05daab1
commit
0465560c1a
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ class StateStore(SQLBaseStore):
|
|||
txn.execute(sql, args)
|
||||
results = self.cursor_to_dict(txn)
|
||||
|
||||
return self._parse_events_txn(results)
|
||||
return self._parse_events_txn(txn, results)
|
||||
|
||||
events = self.runInteraction("get_current_state", f)
|
||||
defer.returnValue(events)
|
||||
|
|
Loading…
Reference in a new issue