summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--activitypub.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index a4969c1..11fddf4 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1362,7 +1362,9 @@ int activitypub_get_handler(d_char *req, char *q_path,
msg = msg_actor(&snac);
*ctype = "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"";
- snac_debug(&snac, 0, xs_fmt("serving actor"));
+ char *ua = xs_dict_get(req, "user-agent");
+
+ snac_debug(&snac, 0, xs_fmt("serving actor [%s]", ua ? ua : "No UA"));
}
else
if (strcmp(p_path, "outbox") == 0) {