snac2

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

commit cf2cfca62401da0b5c0604d4d4bcbe8c8356d6f2
parent 1dd88aa6f67beca1ea769f2545417f50531fa4ea
Author: default <nobody@localhost>
Date:   Sun, 11 Jun 2023 20:10:23 +0200

Also reject Like messages in is_msg_for_me().

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

diff --git a/activitypub.c b/activitypub.c @@ -383,12 +383,16 @@ int is_msg_for_me(snac *snac, const xs_dict *c_msg) { const char *type = xs_dict_get(c_msg, "type"); - if (strcmp(type, "Announce") == 0) { + if (strcmp(type, "Like") == 0 || strcmp(type, "Announce") == 0) { const char *object = xs_dict_get(c_msg, "object"); if (xs_type(object) == XSTYPE_DICT) object = xs_dict_get(object, "id"); + /* bad object id? reject */ + if (xs_type(object) != XSTYPE_STRING) + return 0; + /* if it's about one of our posts, accept it */ if (xs_startswith(object, snac->actor)) return 2;