Also reject Like messages in is_msg_for_me().

This commit is contained in:
default 2023-06-11 20:10:23 +02:00
parent 1dd88aa6f6
commit cf2cfca624

View File

@ -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"); 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"); const char *object = xs_dict_get(c_msg, "object");
if (xs_type(object) == XSTYPE_DICT) if (xs_type(object) == XSTYPE_DICT)
object = xs_dict_get(object, "id"); 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 it's about one of our posts, accept it */
if (xs_startswith(object, snac->actor)) if (xs_startswith(object, snac->actor))
return 2; return 2;