diff options
| author | default <nobody@localhost> | 2025-01-21 20:25:50 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-01-21 20:25:50 +0100 |
| commit | 2611c816b01d3999ffcf3b59c0d3592908054950 (patch) | |
| tree | 08605891755e2e074155a9b4591708c911669480 | |
| parent | 468b7a38885152cb2d61537abfdd9a4cda9c847a (diff) | |
Hide the 'relay' user from the greeting list.
| -rw-r--r-- | httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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", |