summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--activitypub.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c
index 8bcb6b0..649b1f2 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1287,6 +1287,10 @@ xs_dict *msg_actor(snac *snac)
1287 msg = xs_dict_set(msg, "alsoKnownAs", loaka); 1287 msg = xs_dict_set(msg, "alsoKnownAs", loaka);
1288 } 1288 }
1289 1289
1290 const xs_val *manually = xs_dict_get(snac->config, "approve_followers");
1291 msg = xs_dict_set(msg, "manuallyApprovesFollowers",
1292 xs_stock(xs_is_true(manually) ? XSTYPE_TRUE : XSTYPE_FALSE));
1293
1290 return msg; 1294 return msg;
1291} 1295}
1292 1296