summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--html.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/html.c b/html.c
index 0b84e56..20ad839 100644
--- a/html.c
+++ b/html.c
@@ -4343,9 +4343,13 @@ int html_get_handler(const xs_dict *req, const char *q_path,
4343 status = HTTP_STATUS_UNAUTHORIZED; 4343 status = HTTP_STATUS_UNAUTHORIZED;
4344 } 4344 }
4345 else { 4345 else {
4346 const char *q = xs_dict_get(q_vars, "q"); 4346 xs *q = NULL;
4347 const char *q1 = xs_dict_get(q_vars, "q");
4347 xs *url_acct = NULL; 4348 xs *url_acct = NULL;
4348 4349
4350 if (xs_is_string(q1))
4351 q = xs_strip_i(xs_dup(q1));
4352
4349 /* searching for an URL? */ 4353 /* searching for an URL? */
4350 if (q && xs_match(q, "https://*|http://*")) { 4354 if (q && xs_match(q, "https://*|http://*")) {
4351 /* may by an actor; try a webfinger */ 4355 /* may by an actor; try a webfinger */