Return the 'manuallyApprovesFollowers' actor field according to user configuration.

This commit is contained in:
default 2024-11-24 08:03:51 +01:00
parent 36c3030231
commit 35b35ec3af

View file

@ -1287,6 +1287,10 @@ xs_dict *msg_actor(snac *snac)
msg = xs_dict_set(msg, "alsoKnownAs", loaka); msg = xs_dict_set(msg, "alsoKnownAs", loaka);
} }
const xs_val *manually = xs_dict_get(snac->config, "approve_followers");
msg = xs_dict_set(msg, "manuallyApprovesFollowers",
xs_stock(xs_is_true(manually) ? XSTYPE_TRUE : XSTYPE_FALSE));
return msg; return msg;
} }