snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit f9f6d965797e67ca76fb5e5464315961fb2e9d70
parent e100027bec661ec6ca1d9bb9dace3e1c12e3e7d5
Author: default <nobody@localhost>
Date:   Fri, 23 Dec 2022 12:32:59 +0100

Corrected a debug level.

Diffstat:
Mactivitypub.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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");