snac2

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

commit 5cdfd64d610f1029c5d018e25cb098e9f53c7333
parent cf2cfca62401da0b5c0604d4d4bcbe8c8356d6f2
Author: default <nobody@localhost>
Date:   Sun, 11 Jun 2023 20:12:01 +0200

No more archiving of borked Likes.

Diffstat:
Mactivitypub.c | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/activitypub.c b/activitypub.c @@ -1483,12 +1483,6 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) if (xs_type(object) == XSTYPE_DICT) object = xs_dict_get(object, "id"); - if (xs_type(object) != XSTYPE_STRING) { - snac_log(snac, xs_fmt("malformed 'Like' from %s", actor)); - srv_archive_error("malformed_message", "Bad 'Like'", req, msg); - return 1; - } - timeline_admire(snac, object, actor, 1); snac_log(snac, xs_fmt("new 'Like' %s %s", actor, object)); do_notify = 1;