From e25ed0a069ac9285d15a7ada10cd9b9783a81e6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Sun, 26 Oct 2025 21:04:50 +0100 Subject: [PATCH] update fix --- npm_install.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/npm_install.py b/npm_install.py index ca7a91c..2684b9b 100644 --- a/npm_install.py +++ b/npm_install.py @@ -1967,9 +1967,9 @@ def print_summary(info, ipv6_enabled, dark_enabled, tp_theme, update_mode): f"IPv6: {'ENABLED' if ipv6_enabled else 'DISABLED (in configs too)'}" ) if tp_theme: - print(f"Custom theme: {tp_theme}") + print(f"Custom theme: {tp_theme}") else: - print(f"Custom theme: DISABLED") + print(f"Custom theme: DISABLED") print( "Paths: /opt/npm (app), /data (data), /etc/angie (conf), /var/log/angie (logs)" @@ -2218,9 +2218,9 @@ def main(): apply_dark=args.dark_mode, dark_env=dict( APP_FILEPATH="/opt/npm/frontend", - TP_DOMAIN=args.tp_domain, - TP_COMMUNITY_THEME=args.tp_community_theme, - TP_SCHEME=args.tp_scheme, + TP_DOMAIN=TP_DOMAIN, + TP_COMMUNITY_THEME=TP_COMMUNITY_THEME, + TP_SCHEME=TP_SCHEME, TP_THEME=args.tp_theme, ), ipv6_enabled=args.enable_ipv6,