summaryrefslogtreecommitdiff
path: root/webfinger.c
diff options
context:
space:
mode:
authorGravatar khm2024-02-16 11:54:21 -0800
committerGravatar khm2024-02-16 11:54:21 -0800
commit5bebe5f257140f1c09c8a01c3f6b9bda7f8f20ba (patch)
tree91090d16392d0659d3e74d5fa5ee02b3c52995a2 /webfinger.c
parentwebfinger: add webfinger profile page to links (diff)
downloadsnac2-5bebe5f257140f1c09c8a01c3f6b9bda7f8f20ba.tar.gz
snac2-5bebe5f257140f1c09c8a01c3f6b9bda7f8f20ba.tar.xz
snac2-5bebe5f257140f1c09c8a01c3f6b9bda7f8f20ba.zip
webfinger: fix stupid typo
Diffstat (limited to 'webfinger.c')
-rw-r--r--webfinger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/webfinger.c b/webfinger.c
index 8e03698..e065a94 100644
--- a/webfinger.c
+++ b/webfinger.c
@@ -186,7 +186,7 @@ int webfinger_get_handler(xs_dict *req, char *q_path,
186 links = xs_list_append(links, aaj); 186 links = xs_list_append(links, aaj);
187 187
188 prof = xs_dict_append(prof, "rel", "http://webfinger.net/rel/profile-page"); 188 prof = xs_dict_append(prof, "rel", "http://webfinger.net/rel/profile-page");
189 prof = xs_dict_append(prof, "type", "text/html"; 189 prof = xs_dict_append(prof, "type", "text/html");
190 prof = xs_dict_append(prof, "href", snac.actor); 190 prof = xs_dict_append(prof, "href", snac.actor);
191 191
192 links = xs_list_append(links, prof); 192 links = xs_list_append(links, prof);