From 6684e9c638faa3403fcd571fec6cd2837cb5266c Mon Sep 17 00:00:00 2001 From: oldnapalm <38410858+oldnapalm@users.noreply.github.com> Date: Wed, 16 Oct 2024 06:53:35 -0300 Subject: [PATCH] Keep compatibility with main branch --- standalone_power.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standalone_power.py b/standalone_power.py index aaf90fc4..795e751f 100644 --- a/standalone_power.py +++ b/standalone_power.py @@ -814,7 +814,7 @@ def handle(self): bot.start() socketserver.ThreadingTCPServer.allow_reuse_address = True -httpd = socketserver.ThreadingTCPServer(('', zo.http_port), CDNHandler) +httpd = socketserver.ThreadingTCPServer(('', 80), CDNHandler) zoffline_thread = threading.Thread(target=httpd.serve_forever) zoffline_thread.daemon = True zoffline_thread.start()