2 files changed, 3 insertions, 1 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py
index e596cb7376..ee63f06359 100644
--- a/synapse/appservice/api.py
+++ b/synapse/appservice/api.py
@@ -153,6 +153,7 @@ class ApplicationServiceApi(SimpleHttpClient):
def get_3pe_protocol(self, service, protocol):
if service.url == "":
defer.returnValue({})
+
@defer.inlineCallbacks
def _get():
uri = "%s%s/thirdparty/protocol/%s" % (
diff --git a/synapse/config/appservice.py b/synapse/config/appservice.py
index 3488a28ff2..5569c43b35 100644
--- a/synapse/config/appservice.py
+++ b/synapse/config/appservice.py
@@ -135,7 +135,8 @@ def _load_appservice(hostname, as_info, config_filename):
if as_info["url"] == "":
logger.info(
- "(%s) Explicitly empty 'url' provided. This application service will not receive events or queries.",
+ "(%s) Explicitly empty 'url' provided. This application service " +
+ "will not receive events or queries.",
config_filename,
)
return ApplicationService(
|