mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-09 09:26:50 +00: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(
|
events = yield self._get_events(
|
||||||
[event_id],
|
[event_id],
|
||||||
check_redacted=True,
|
check_redacted=check_redacted,
|
||||||
get_prev_content=False,
|
get_prev_content=get_prev_content,
|
||||||
allow_rejected=False,
|
allow_rejected=allow_rejected,
|
||||||
)
|
)
|
||||||
|
|
||||||
if not events and not allow_none:
|
if not events and not allow_none:
|
||||||
|
|
Loading…
Add table
Reference in a new issue