ssb: Adjust the follow/hops policies. Replication defaults to 2 hops, counted in the same way as the docs, and is configurable. #79
Some checks are pending
Build Tilde Friends / Build-All (push) Waiting to run

This commit is contained in:
2024-11-25 11:20:01 -05:00
parent d5bd4c6735
commit f6d4e934e3
6 changed files with 10 additions and 14 deletions

View File

@ -221,7 +221,7 @@ class TfElement extends LitElement {
async load() {
let whoami = this.whoami;
let tags = this.load_recent_tags();
let following = await tfrpc.rpc.following([whoami], 2);
let following = await tfrpc.rpc.following([whoami], 3);
let users = {};
let by_count = [];
for (let [id, v] of Object.entries(following)) {