mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 09:55:04 +00:00
Merge pull request 'Added user-agent to webfinger query' (#34) from poesty/snac2:master into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/34 This is to avoid that when sending webfinger queries to some instances (e.g. GoToSocial), we cannot fetch their resources because of the 418 status code returned by the other side.
This commit is contained in:
commit
f66080f67c
1 changed files with 2 additions and 1 deletions
|
@ -47,6 +47,7 @@ int webfinger_request(const char *qs, char **actor, char **user)
|
||||||
return 400;
|
return 400;
|
||||||
|
|
||||||
headers = xs_dict_append(headers, "accept", "application/json");
|
headers = xs_dict_append(headers, "accept", "application/json");
|
||||||
|
headers = xs_dict_append(headers, "user-agent", USER_AGENT);
|
||||||
|
|
||||||
/* is it a query about one of us? */
|
/* is it a query about one of us? */
|
||||||
if (strcmp(host, xs_dict_get(srv_config, "host")) == 0) {
|
if (strcmp(host, xs_dict_get(srv_config, "host")) == 0) {
|
||||||
|
|
Loading…
Reference in a new issue