mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-10 03:50:38 +03:00
More tweaks regarding shared inboxes.
This commit is contained in:
parent
5e2f4e9902
commit
8800ed3892
@ -1670,8 +1670,10 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(type, "Create") == 0) { /** **/
|
if (strcmp(type, "Create") == 0) { /** **/
|
||||||
if (is_muted(snac, actor))
|
if (is_muted(snac, actor)) {
|
||||||
snac_log(snac, xs_fmt("ignored 'Create' + '%s' from muted actor %s", utype, actor));
|
snac_log(snac, xs_fmt("ignored 'Create' + '%s' from muted actor %s", utype, actor));
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (strcmp(utype, "Note") == 0) { /** **/
|
if (strcmp(utype, "Note") == 0) { /** **/
|
||||||
char *id = xs_dict_get(object, "id");
|
char *id = xs_dict_get(object, "id");
|
||||||
@ -1751,6 +1753,9 @@ 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 (is_muted(snac, actor) && !xs_startswith(object, snac->actor))
|
||||||
|
snac_log(snac, xs_fmt("dropped 'Announce' from muted actor %s", actor));
|
||||||
|
else
|
||||||
if (is_limited(snac, actor) && !xs_startswith(object, snac->actor))
|
if (is_limited(snac, actor) && !xs_startswith(object, snac->actor))
|
||||||
snac_log(snac, xs_fmt("dropped 'Announce' from limited actor %s", actor));
|
snac_log(snac, xs_fmt("dropped 'Announce' from limited actor %s", actor));
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user