1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py
index 159850c44c..a3df375c81 100644
--- a/synapse/app/pusher.py
+++ b/synapse/app/pusher.py
@@ -132,7 +132,7 @@ class PusherServer(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:
@@ -168,7 +168,7 @@ class PusherServer(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:
|