Fixed typo in webfinger_request().

This commit is contained in:
default 2022-11-09 07:34:04 +01:00
parent 3beafe8845
commit 6e0b5c9d20

View File

@ -39,7 +39,7 @@ int webfinger_request(char *qs, char **actor, char **user)
if (xs_list_len(l) == 2) { if (xs_list_len(l) == 2) {
host = xs_list_get(l, 1); host = xs_list_get(l, 1);
resource = xs_fmt("acct:%s", qs); resource = xs_fmt("acct:%s", s);
} }
} }