diff options
author | default <nobody@localhost> | 2023-03-02 13:30:29 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-03-02 13:30:29 +0100 |
commit | 1ca94dab671f04f1a703508c6857bec2ccf08539 (patch) | |
tree | 484f14c88bea0ee5a339ee9450cd2628565a7c00 /activitypub.c | |
parent | 5036cb5e1134d99c967f0de5057801a9b0af96d9 (diff) |
Added user-agent in non-signed http connections.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 9c47590..a4969c1 100644 --- 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); |