mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Fix optional parameter in stripped state storage method (#8688)
Missed in #8671.
This commit is contained in:
parent
ef2d627015
commit
4504151546
1
changelog.d/8688.misc
Normal file
1
changelog.d/8688.misc
Normal file
@ -0,0 +1 @@
|
||||
Abstract some invite-related code in preparation for landing knocking.
|
@ -530,7 +530,7 @@ class EventsWorkerStore(SQLBaseStore):
|
||||
self,
|
||||
context: EventContext,
|
||||
state_types_to_include: List[EventTypes],
|
||||
membership_user_id: Optional[str],
|
||||
membership_user_id: Optional[str] = None,
|
||||
) -> List[JsonDict]:
|
||||
"""
|
||||
Retrieve the stripped state from a room, given an event context to retrieve state
|
||||
|
Loading…
Reference in New Issue
Block a user