poprawka w format_host
This commit is contained in:
parent
1a1e84ad11
commit
88583dba31
15
app.py
15
app.py
@ -1271,15 +1271,16 @@ def deploy_user(user_id):
|
||||
else:
|
||||
chosen_file = default_file
|
||||
|
||||
# 🛠 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 disable_local_default jest włączone → wgraj tylko wybrany plik hosts
|
||||
if h.disable_local_default:
|
||||
final_content = chosen_file.content.strip()
|
||||
else:
|
||||
# W przeciwnym wypadku dodaj regex i ensure_local_defaults
|
||||
final_content = chosen_file.content.strip()
|
||||
|
||||
# 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
|
||||
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)
|
||||
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user