From 240f212252f9cc2a16d2accda7c619a90702da9c Mon Sep 17 00:00:00 2001 From: default Date: Sat, 21 Dec 2024 18:40:09 +0100 Subject: [PATCH] Account names can also contain periods (in account search). --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index 4060262..2c0a823 100644 --- a/html.c +++ b/html.c @@ -3080,7 +3080,7 @@ int html_get_handler(const xs_dict *req, const char *q_path, } if (q && *q) { - if (xs_regex_match(q, "^@?[a-zA-Z0-9_]+@[a-zA-Z0-9-]+\\.")) { + if (xs_regex_match(q, "^@?[a-zA-Z0-9._]+@[a-zA-Z0-9-]+\\.")) { /** search account **/ xs *actor = NULL; xs *acct = NULL;