mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Added support for Accept objects that only provide an object id.
This allows following Guppe groups.
This commit is contained in:
parent
1882c25a17
commit
dc5c1ce0ac
1 changed files with 4 additions and 2 deletions
|
@ -1512,7 +1512,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
|||
}
|
||||
else
|
||||
if (strcmp(type, "Accept") == 0) { /** **/
|
||||
if (strcmp(utype, "Follow") == 0) { /** **/
|
||||
if (strcmp(utype, "Follow") == 0 || strcmp(utype, "(null)") == 0) { /** **/
|
||||
if (following_check(snac, actor)) {
|
||||
following_add(snac, actor, msg);
|
||||
snac_log(snac, xs_fmt("confirmed follow from %s", actor));
|
||||
|
@ -1520,9 +1520,11 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
|||
else
|
||||
snac_log(snac, xs_fmt("spurious follow accept from %s", actor));
|
||||
}
|
||||
else
|
||||
else {
|
||||
srv_archive_error("accept", "ignored Accept", req, msg);
|
||||
snac_debug(snac, 1, xs_fmt("ignored 'Accept' for object type '%s'", utype));
|
||||
}
|
||||
}
|
||||
else
|
||||
if (strcmp(type, "Like") == 0) { /** **/
|
||||
if (xs_type(object) == XSTYPE_DICT)
|
||||
|
|
Loading…
Reference in a new issue