summary refs log tree commit diff
path: root/synapse/app/client_reader.py
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@arasphere.net>2016-12-20 00:41:42 +0000
committerGitHub <noreply@github.com>2016-12-20 00:41:42 +0000
commitb7f4f902fad400d7653a9d246c5e18a24fc4fb6d (patch)
treeb272f062a4e843423495973d286bd003fe07f061 /synapse/app/client_reader.py
parentMerge pull request #1711 from matrix-org/matthew/utf8-password-change (diff)
parentFix check for bind_address (diff)
downloadsynapse-b7f4f902fad400d7653a9d246c5e18a24fc4fb6d.tar.xz
Merge pull request #1712 from kyrias/fix-bind-address-none
Fix check for bind_address
Diffstat (limited to 'synapse/app/client_reader.py')
-rw-r--r--synapse/app/client_reader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/app/client_reader.py b/synapse/app/client_reader.py
index 305a82b664..b5e1d659e6 100644
--- a/synapse/app/client_reader.py
+++ b/synapse/app/client_reader.py
@@ -110,7 +110,7 @@ class ClientReaderServer(HomeServer):
 
         root_resource = create_resource_tree(resources, Resource())
 
-        if bind_address:
+        if bind_address is not None:
             bind_addresses.append(bind_address)
 
         for address in bind_addresses:
@@ -135,7 +135,7 @@ class ClientReaderServer(HomeServer):
                 bind_address = listener.get("bind_address", None)
                 bind_addresses = listener.get("bind_addresses", [])
 
-                if bind_address:
+                if bind_address is not None:
                     bind_addresses.append(bind_address)
 
                 for address in bind_addresses: