diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2022-02-07 18:26:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 18:26:42 +0000 |
commit | cf06783d54b2b9090aef595a9094ddd857c1155b (patch) | |
tree | 697c9646d0ae19c01ebd02216a517bfd11661569 /synapse/handlers | |
parent | Pass the proper type when uploading files. (#11927) (diff) | |
download | synapse-cf06783d54b2b9090aef595a9094ddd857c1155b.tar.xz |
Remove optional state of `ApplicationService.is_interested`'s `store` parameter (#11911)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/appservice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/appservice.py b/synapse/handlers/appservice.py index 0fb919acf6..a42c3558e4 100644 --- a/synapse/handlers/appservice.py +++ b/synapse/handlers/appservice.py @@ -649,7 +649,7 @@ class ApplicationServicesHandler: """Retrieve a list of application services interested in this event. Args: - event: The event to check. Can be None if alias_list is not. + event: The event to check. Returns: A list of services interested in this event based on the service regex. """ |