From ed9571af3b970a624f22e5158616d1dde545beb4 Mon Sep 17 00:00:00 2001 From: grunfink Date: Tue, 18 Aug 2026 18:44:29 +0200 Subject: Moved proxy status change after the log message. --- html.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html.c b/html.c index ee68327..a93435e 100644 --- a/html.c +++ b/html.c @@ -5328,11 +5328,11 @@ int html_get_handler(const xs_dict *req, const char *q_path, } } } - else - if (status >= 400 && status <= 499) - status = HTTP_STATUS_NOT_FOUND; snac_debug(&snac, 1, xs_fmt("Proxy for %s %d", url, status)); + + if (status >= 400 && status <= 499) + status = HTTP_STATUS_NOT_FOUND; } } else -- cgit