summary refs log tree commit diff
path: root/synapse/handlers/appservice.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-12-10 15:42:03 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2021-12-10 15:50:51 +0000
commite580ca07b85498bfc4d10054d39ebd0a869aa23b (patch)
treef9cc2053e8bf24cfd2c0d8aa4f1ff0dd3a58e1d3 /synapse/handlers/appservice.py
parentSquash into and use everywhere (diff)
downloadsynapse-e580ca07b85498bfc4d10054d39ebd0a869aa23b.tar.xz
store argument is no longer optional in is_interested_in_room
Diffstat (limited to 'synapse/handlers/appservice.py')
-rw-r--r--synapse/handlers/appservice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/appservice.py b/synapse/handlers/appservice.py

index 3dc0d89530..fb533188a2 100644 --- a/synapse/handlers/appservice.py +++ b/synapse/handlers/appservice.py
@@ -768,7 +768,7 @@ class ApplicationServicesHandler: # inside of a list comprehension anymore. interested_list = [] for s in services: - if await s.is_interested_in_event(event, store=self.store): + if await s.is_interested_in_event(event, self.store): interested_list.append(s) return interested_list