From 1a1e84ad114205ad50e466315c6f7b364b618ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Mon, 10 Mar 2025 15:15:00 +0100 Subject: [PATCH] poprawka w format_host --- app.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app.py b/app.py index af985fc..ecfcb5d 100644 --- a/app.py +++ b/app.py @@ -1271,14 +1271,14 @@ def deploy_user(user_id): else: chosen_file = default_file - # 🛠 Poprawiona logika final_content: - final_content = chosen_file.content # Zawsze dodajemy podstawowy plik hosts - - # Jeśli regex deploy jest włączony, dodaj regex_lines - if not h.disable_regex_deploy: - final_content = regex_lines + final_content + # 🛠 Upewniamy się, że final_content nigdy nie jest pusty + final_content = chosen_file.content if chosen_file.content.strip() else "# Empty /etc/hosts file\n" - # Jeśli local-defaults jest włączone, dodaj je + # Dodaj regex, jeśli nie jest wyłączony + if not h.disable_regex_deploy and regex_lines.strip(): + final_content = regex_lines + "\n" + final_content + + # Dodaj local-defaults, jeśli nie jest wyłączony if not h.disable_local_default: final_content = ensure_local_defaults(final_content, user_id)