mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-19 08:24:25 +01:00
Correctly pass through params
This commit is contained in:
parent
de01438a57
commit
575ec91d82
1 changed files with 3 additions and 3 deletions
|
@ -91,9 +91,9 @@ class EventsStore(SQLBaseStore):
|
|||
"""
|
||||
events = yield self._get_events(
|
||||
[event_id],
|
||||
check_redacted=True,
|
||||
get_prev_content=False,
|
||||
allow_rejected=False,
|
||||
check_redacted=check_redacted,
|
||||
get_prev_content=get_prev_content,
|
||||
allow_rejected=allow_rejected,
|
||||
)
|
||||
|
||||
if not events and not allow_none:
|
||||
|
|
Loading…
Reference in a new issue