mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-10 03:50:38 +03:00
Don't be overzealous in avoid notifications for Likes and Announces.
This commit is contained in:
parent
38110ae072
commit
21400ca13a
@ -1996,12 +1996,12 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
|||||||
if (xs_type(object) == XSTYPE_DICT)
|
if (xs_type(object) == XSTYPE_DICT)
|
||||||
object = xs_dict_get(object, "id");
|
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));
|
snac_log(snac, xs_fmt("new 'Like' %s %s", actor, object));
|
||||||
do_notify = 1;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
snac_log(snac, xs_fmt("repeated 'Like' from %s to %s", actor, object));
|
snac_log(snac, xs_fmt("repeated 'Like' from %s to %s", actor, object));
|
||||||
|
|
||||||
|
do_notify = 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(type, "Announce") == 0) { /** **/
|
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;
|
xs *who_o = NULL;
|
||||||
|
|
||||||
if (valid_status(actor_request(snac, who, &who_o))) {
|
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));
|
snac_log(snac, xs_fmt("new 'Announce' %s %s", actor, object));
|
||||||
do_notify = 1;
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
snac_log(snac, xs_fmt("repeated 'Announce' from %s to %s",
|
snac_log(snac, xs_fmt("repeated 'Announce' from %s to %s",
|
||||||
actor, object));
|
actor, object));
|
||||||
|
|
||||||
|
do_notify = 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
snac_debug(snac, 1, xs_fmt("dropped 'Announce' on actor request error %s", who));
|
snac_debug(snac, 1, xs_fmt("dropped 'Announce' on actor request error %s", who));
|
||||||
|
Loading…
Reference in New Issue
Block a user