From 4e954878424889c6f3246ef7a6d7b13e63e55b58 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Mon, 31 Jan 2022 23:45:21 +0100 Subject: [PATCH] Change default crawl depth to 20 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 358a10e..8899d50 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,6 +6,6 @@ pub mod node_info; pub const REQUEST_TIMEOUT: Duration = Duration::from_secs(10); pub const DEFAULT_START_INSTANCES: &str = "lemmy.ml"; -pub const DEFAULT_MAX_CRAWL_DEPTH: &str = "1"; +pub const DEFAULT_MAX_CRAWL_DEPTH: &str = "20"; pub const EXCLUDE_INSTANCES: &str = "ds9.lemmy.ml, enterprise.lemmy.ml, voyager.lemmy.ml, test.lemmy.ml";