snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 240f212252f9cc2a16d2accda7c619a90702da9c
parent 05d6e41710ed46526f42048dbf24cc3185ba3aa6
Author: default <nobody@localhost>
Date:   Sat, 21 Dec 2024 18:40:09 +0100

Account names can also contain periods (in account search).

Diffstat:
Mhtml.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;