pokken: fix profile loading fail

This commit is contained in:
2024-06-12 23:24:45 -04:00
committed by beerpsi
parent 4bf0362ff4
commit 6ec7bd3b5d
3 changed files with 6 additions and 6 deletions

View File

@ -50,7 +50,7 @@ class Utils:
def get_title_port_ssl(cls, cfg: CoreConfig):
if cls.real_title_port_ssl is not None: return cls.real_title_port_ssl
cls.real_title_port_ssl = cfg.server.proxy_port_ssl if cfg.server.is_using_proxy and cfg.server.proxy_port_ssl else Utils.get_title_port(cfg)
cls.real_title_port_ssl = cfg.server.proxy_port_ssl if cfg.server.is_using_proxy and cfg.server.proxy_port_ssl else 443
return cls.real_title_port_ssl