From 2611c816b01d3999ffcf3b59c0d3592908054950 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 21 Jan 2025 20:25:50 +0100 Subject: Hide the 'relay' user from the greeting list. --- httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index c13402b..e0a36b6 100644 --- a/httpd.c +++ b/httpd.c @@ -138,7 +138,7 @@ static xs_str *greeting_html(void) while (xs_list_iter(&p, &uid)) { snac user; - if (user_open(&user, uid)) { + if (strcmp(uid, "relay") && user_open(&user, uid)) { xs_html_add(ul, xs_html_tag("li", xs_html_tag("a", -- cgit v1.2.3