mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
Also accept 'Delete' on input.
This commit is contained in:
parent
82e9a03925
commit
366c23ab85
1 changed files with 5 additions and 2 deletions
|
@ -746,11 +746,14 @@ int process_message(snac *snac, char *msg, char *req)
|
|||
else
|
||||
snac_log(snac, xs_fmt("ignored 'Update' for object type '%s'", utype));
|
||||
}
|
||||
/*
|
||||
else
|
||||
if (strcmp(type, "Delete") == 0) {
|
||||
if (xs_type(object) == XSTYPE_DICT)
|
||||
object = xs_dict_get(object, "id");
|
||||
|
||||
timeline_del(snac, object);
|
||||
snac_log(snac, xs_fmt("received delete request for %s", object));
|
||||
}
|
||||
*/
|
||||
else
|
||||
snac_debug(snac, 1, xs_fmt("process_message type '%s' ignored", type));
|
||||
|
||||
|
|
Loading…
Reference in a new issue