1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/app/media_repository.py b/synapse/app/media_repository.py
index c121107245..a47283e520 100644
--- a/synapse/app/media_repository.py
+++ b/synapse/app/media_repository.py
@@ -107,7 +107,7 @@ class MediaRepositoryServer(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:
@@ -132,7 +132,7 @@ class MediaRepositoryServer(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:
|