commit 1ca94dab671f04f1a703508c6857bec2ccf08539
parent 5036cb5e1134d99c967f0de5057801a9b0af96d9
Author: default <nobody@localhost>
Date: Thu, 2 Mar 2023 13:30:29 +0100
Added user-agent in non-signed http connections.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/activitypub.c b/activitypub.c
@@ -66,7 +66,8 @@ int activitypub_request(snac *snac, char *url, d_char **data)
xs_free(response);
xs *hdrs = xs_dict_new();
- hdrs = xs_dict_append(hdrs, "accept", "application/activity+json");
+ hdrs = xs_dict_append(hdrs, "accept", "application/activity+json");
+ hdrs = xs_dict_append(hdrs, "user-agent", USER_AGENT);
response = xs_http_request("GET", url, hdrs,
NULL, 0, &status, &payload, &p_size, 0);