From: Dessalines Date: Wed, 13 Apr 2022 18:27:56 +0000 (-0400) Subject: Fix allowlist / blocklist description location. Fixes #2214 (#2215) X-Git-Url: http://these/git/readmes/README.ja.md?a=commitdiff_plain;h=0a36b16e290cba68ceac0e16e30588afa2ca0e75;p=lemmy.git Fix allowlist / blocklist description location. Fixes #2214 (#2215) * Fix allowlist / blocklist description location. Fixes #2214 * Fix allowlist check --- diff --git a/config/defaults.hjson b/config/defaults.hjson index 18a4b219..f14bacb5 100644 --- a/config/defaults.hjson +++ b/config/defaults.hjson @@ -45,7 +45,7 @@ # Whether to enable activitypub federation. enabled: false # Allows and blocks are described here: - # https://join-lemmy.org/docs/en/federation/administration.html///instance-allowlist-and-blocklist + # https://join-lemmy.org/docs/en/administration/federation_getting_started.html # # list of instances with which federation is allowed allowed_instances: [ diff --git a/crates/utils/src/settings/structs.rs b/crates/utils/src/settings/structs.rs index fe4c1509..9a7a953a 100644 --- a/crates/utils/src/settings/structs.rs +++ b/crates/utils/src/settings/structs.rs @@ -115,7 +115,7 @@ pub struct FederationConfig { #[default(false)] pub enabled: bool, /// Allows and blocks are described here: - /// https://join-lemmy.org/docs/en/federation/administration.html///instance-allowlist-and-blocklist + /// https://join-lemmy.org/docs/en/administration/federation_getting_started.html /// /// list of instances with which federation is allowed #[default(None)]