summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorWill Hunt <will@half-shot.uk>2018-06-27 17:11:13 +0100
committerWill Hunt <will@half-shot.uk>2018-06-27 17:11:13 +0100
commit212d4abeab1d254ab4c2041ed6c9dd01f97b9a72 (patch)
tree3fbe26c0bd889ffeb8611c6f94c56094a0a648e8 /synapse
parentevent.event_id => event.sender (diff)
downloadsynapse-github/hs/as-server-banlist.tar.xz
Diffstat (limited to 'synapse')
-rw-r--r--synapse/handlers/appservice.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/synapse/handlers/appservice.py b/synapse/handlers/appservice.py

index ad827a3416..4f05eba798 100644 --- a/synapse/handlers/appservice.py +++ b/synapse/handlers/appservice.py
@@ -99,12 +99,12 @@ class ApplicationServicesHandler(object): ev_domain = get_domain_from_id(event.sender) if any(srv_re.match(ev_domain) is not None for srv_re in self.server_blacklist): - logger.info( - "Ignoring %s from %s, matches server blacklist", - event.sender, - ev_domain - ) - return + logger.info( + "Ignoring %s from %s, matches server blacklist", + event.sender, + ev_domain + ) + return # Gather interested services services = yield self._get_services_for_event(event) if len(services) == 0: