diff options
author | khm <khm@sciops.net> | 2024-02-16 11:54:21 -0800 |
---|---|---|
committer | khm <khm@sciops.net> | 2024-02-16 11:54:21 -0800 |
commit | 5bebe5f257140f1c09c8a01c3f6b9bda7f8f20ba (patch) | |
tree | 91090d16392d0659d3e74d5fa5ee02b3c52995a2 /webfinger.c | |
parent | 62dfe46bfbc9a9588c33aa2f4818932de0d14345 (diff) |
webfinger: fix stupid typo
Diffstat (limited to 'webfinger.c')
-rw-r--r-- | webfinger.c | 2 |
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, links = xs_list_append(links, aaj); prof = xs_dict_append(prof, "rel", "http://webfinger.net/rel/profile-page"); - prof = xs_dict_append(prof, "type", "text/html"; + prof = xs_dict_append(prof, "type", "text/html"); prof = xs_dict_append(prof, "href", snac.actor); links = xs_list_append(links, prof); |