mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-12-26 01:03:37 +00:00
Limited users can announce our own posts.
This commit is contained in:
parent
a3f1387daa
commit
135e690a27
1 changed files with 4 additions and 4 deletions
|
@ -1558,15 +1558,15 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
|||
}
|
||||
else
|
||||
if (strcmp(type, "Announce") == 0) { /** **/
|
||||
if (is_limited(snac, actor))
|
||||
if (xs_type(object) == XSTYPE_DICT)
|
||||
object = xs_dict_get(object, "id");
|
||||
|
||||
if (is_limited(snac, actor) && !xs_startswith(object, snac->actor))
|
||||
snac_log(snac, xs_fmt("dropped 'Announce' from limited actor %s", actor));
|
||||
else {
|
||||
xs *a_msg = NULL;
|
||||
xs *wrk = NULL;
|
||||
|
||||
if (xs_type(object) == XSTYPE_DICT)
|
||||
object = xs_dict_get(object, "id");
|
||||
|
||||
timeline_request(snac, &object, &wrk, 0);
|
||||
|
||||
if (valid_status(object_get(object, &a_msg))) {
|
||||
|
|
Loading…
Reference in a new issue