summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-12-23 12:32:59 +0100
committerdefault <nobody@localhost>2022-12-23 12:32:59 +0100
commitf9f6d965797e67ca76fb5e5464315961fb2e9d70 (patch)
treeac2a72af41bfcaaa56e9ca2e59fd763eabf8f4c6 /activitypub.c
parente100027bec661ec6ca1d9bb9dace3e1c12e3e7d5 (diff)
Corrected a debug level.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index 17b038f..ceb5d37 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -99,7 +99,8 @@ int timeline_request(snac *snac, char **id, char *referrer)
*id = xs_dict_get(object, "id");
if (strcmp(*id, oid) != 0)
- snac_debug(snac, 0, xs_fmt("canonic id for %s is %s", oid, *id));
+ snac_debug(snac, 1,
+ xs_fmt("timeline_request canonical id for %s is %s", oid, *id));
if (!xs_is_null(type) && strcmp(type, "Note") == 0) {
char *actor = xs_dict_get(object, "attributedTo");