summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-11-30 14:15:38 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2021-12-08 18:30:52 +0000
commit967755d574d38e59415c5858c32b3fb69bdf262b (patch)
tree835885fb14ad13b5c4ba77af783f5089b324e87d
parentwip: get device lists working (diff)
downloadsynapse-967755d574d38e59415c5858c32b3fb69bdf262b.tar.xz
Fix calling is_interested_in_event with store.
-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 3b4e09eb9c..456794004f 100644
--- a/synapse/handlers/appservice.py
+++ b/synapse/handlers/appservice.py
@@ -762,7 +762,7 @@ class ApplicationServicesHandler:
         # inside of a list comprehension anymore.
         interested_list = []
         for s in services:
-            if await s.is_interested_in_event(event, self.store):
+            if await s.is_interested_in_event(event, store=self.store):
                 interested_list.append(s)
 
         return interested_list