diff options
author | default <nobody@localhost> | 2022-09-25 22:57:18 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-25 22:57:18 +0200 |
commit | d86f6ee27f63b120fce952e0905a8c627861ba81 (patch) | |
tree | 30b2eeb88f5f2838cc8ebc0719c74c11cbf4b3aa /webfinger.c | |
parent | 424557fcb8a70df8ab84cdab270057259664aa8f (diff) |
Backported from xs.
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 e9f0893..6476bba 100644 --- a/webfinger.c +++ b/webfinger.c @@ -82,7 +82,7 @@ int webfinger_request(char *qs, char **actor, char **user) char *v; while (xs_list_iter(&list, &v)) { - if (xs_type(v) == XSTYPE_SOD) { + if (xs_type(v) == XSTYPE_DICT) { char *type = xs_dict_get(v, "type"); if (type && strcmp(type, "application/activity+json") == 0) { |