diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-10-30 00:22:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 00:22:31 +0000 |
commit | 450415154649b2355a8a38b6abf8de973fc6428a (patch) | |
tree | 37bbbd83127fd35ed57589627faa1fd769aa740c | |
parent | Fix unit tests (#8689) (diff) | |
download | synapse-450415154649b2355a8a38b6abf8de973fc6428a.tar.xz |
Fix optional parameter in stripped state storage method (#8688)
Missed in #8671.
-rw-r--r-- | changelog.d/8688.misc | 1 | ||||
-rw-r--r-- | synapse/storage/databases/main/events_worker.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/8688.misc b/changelog.d/8688.misc new file mode 100644 index 0000000000..bef8dc425a --- /dev/null +++ b/changelog.d/8688.misc @@ -0,0 +1 @@ +Abstract some invite-related code in preparation for landing knocking. \ No newline at end of file diff --git a/synapse/storage/databases/main/events_worker.py b/synapse/storage/databases/main/events_worker.py index 5ae263827d..4732685f6e 100644 --- a/synapse/storage/databases/main/events_worker.py +++ b/synapse/storage/databases/main/events_worker.py @@ -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 |