From de8c27d0e98222d72b6158fa2240c6719e034a66 Mon Sep 17 00:00:00 2001 From: danny Date: Mon, 18 Mar 2024 11:38:27 +0100 Subject: [PATCH] fixed address --- endpoint/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoint/config.py b/endpoint/config.py index 0b3b6cc..7995b75 100644 --- a/endpoint/config.py +++ b/endpoint/config.py @@ -25,7 +25,7 @@ def getPort(): return int(config.get('Settings', 'port', fallback='6176')) def getBindingAddress(): - return int(config.get('Settings', 'binding_address', fallback='0.0.0.0')) + return config.get('Settings', 'binding_address', fallback='0.0.0.0') def getUser(): return config.get('Settings', 'appleid', fallback=None)