0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-08-30 22:45:24 +02:00

Correctly pass through params

This commit is contained in:
Erik Johnston 2015-05-15 11:15:10 +01:00
parent de01438a57
commit 575ec91d82

View file

@ -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: