diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-12-20 01:37:50 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-12-20 01:37:50 +0100 |
commit | 702c020e58dd8663e66c25f88fba2a02264e7357 (patch) | |
tree | b272f062a4e843423495973d286bd003fe07f061 /synapse/app/pusher.py | |
parent | Merge pull request #1711 from matrix-org/matthew/utf8-password-change (diff) | |
download | synapse-702c020e58dd8663e66c25f88fba2a02264e7357.tar.xz |
Fix check for bind_address
The empty string is a valid setting for the bind_address option, so explicitly check for None here instead. Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r-- | synapse/app/pusher.py | 4 |
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: |