Don't be overzealous in avoid notifications for Likes and Announces.

This commit is contained in:
default 2024-03-22 21:26:10 +01:00
parent 38110ae072
commit 21400ca13a

View File

@ -1996,12 +1996,12 @@ 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 (timeline_admire(snac, object, actor, 1) == 201) {
if (timeline_admire(snac, object, actor, 1) == 201)
snac_log(snac, xs_fmt("new 'Like' %s %s", actor, object));
do_notify = 1;
}
else
snac_log(snac, xs_fmt("repeated 'Like' from %s to %s", actor, object));
do_notify = 1;
}
else
if (strcmp(type, "Announce") == 0) { /** **/
@ -2027,13 +2027,13 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
xs *who_o = NULL;
if (valid_status(actor_request(snac, who, &who_o))) {
if (timeline_admire(snac, object, actor, 0) == 201) {
if (timeline_admire(snac, object, actor, 0) == 201)
snac_log(snac, xs_fmt("new 'Announce' %s %s", actor, object));
do_notify = 1;
}
else
snac_log(snac, xs_fmt("repeated 'Announce' from %s to %s",
actor, object));
do_notify = 1;
}
else
snac_debug(snac, 1, xs_fmt("dropped 'Announce' on actor request error %s", who));