diff options
| author | byte <gf3qyrmw7@mozmail.com> | 2026-01-12 01:25:49 +0100 |
|---|---|---|
| committer | byte <gf3qyrmw7@mozmail.com> | 2026-01-12 01:25:49 +0100 |
| commit | 6ad2365a41dd84ee925d7921a1c5756499d6fb17 (patch) | |
| tree | 032fac55b062deb6010814bfc5c2b656e1b1ef28 /activitypub.c | |
| parent | 493a09a0e70aba454347b73fd725e90656ec6598 (diff) | |
user-specified word mutes and matching
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 5e55b8a..829f6d5 100644 --- a/activitypub.c +++ b/activitypub.c @@ -2958,7 +2958,7 @@ int process_input_message(snac *snac, const xs_dict *msg, const xs_dict *req) if (xs_is_null(object)) snac_log(snac, xs_fmt("malformed message: no 'id' field")); else - if (timeline_admire(snac, object, actor, 1, xs_dup(msg)) == HTTP_STATUS_CREATED) + if (timeline_admire(snac, object, actor, 1, msg) == HTTP_STATUS_CREATED) snac_log(snac, xs_fmt("new '%s' %s %s", type, actor, object)); else snac_log(snac, xs_fmt("repeated '%s' from %s to %s", type, actor, object)); |