From 8864b2625d06c8f8f275466c65cf9c2a77d27c0c Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Mon, 22 Jan 2024 16:21:49 -0500 Subject: [PATCH] fix proxy ports --- core/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/config.py b/core/config.py index a4e774e..c41418e 100644 --- a/core/config.py +++ b/core/config.py @@ -81,7 +81,7 @@ class ServerConfig: is_using_proxy is True and this value is non-zero """ return CoreConfig.get_config_field( - self.__config, "core", "title", "proxy_port", default=0 + self.__config, "core", "server", "proxy_port", default=0 ) @property @@ -91,7 +91,7 @@ class ServerConfig: instead of 'port' if is_using_proxy is True and this value is non-zero """ return CoreConfig.get_config_field( - self.__config, "core", "title", "proxy_port_ssl", default=0 + self.__config, "core", "server", "proxy_port_ssl", default=0 ) @property