mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 14:35:04 +00:00
Fixed shared inbox distribution logic for Delete messages.
This commit is contained in:
parent
f93b5ad091
commit
ad718e5b80
1 changed files with 4 additions and 2 deletions
|
@ -1526,7 +1526,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
||||||
if (xs_type(obj_id) == XSTYPE_DICT)
|
if (xs_type(obj_id) == XSTYPE_DICT)
|
||||||
obj_id = xs_dict_get(obj_id, "id");
|
obj_id = xs_dict_get(obj_id, "id");
|
||||||
|
|
||||||
if (object_here(obj_id)) {
|
if (!object_here(obj_id)) {
|
||||||
srv_debug(1, xs_fmt("dropped 'Delete' message from unknown object '%s'", obj_id));
|
srv_debug(1, xs_fmt("dropped 'Delete' message from unknown object '%s'", obj_id));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -1778,8 +1778,10 @@ 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 (valid_status(timeline_del(snac, object)))
|
if (object_here(object)) {
|
||||||
|
timeline_del(snac, object);
|
||||||
snac_debug(snac, 1, xs_fmt("new 'Delete' %s %s", actor, object));
|
snac_debug(snac, 1, xs_fmt("new 'Delete' %s %s", actor, object));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
snac_debug(snac, 1, xs_fmt("ignored 'Delete' for unknown object %s", object));
|
snac_debug(snac, 1, xs_fmt("ignored 'Delete' for unknown object %s", object));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue