From ae80068461b86517a8238b828994974bbed3e0f6 Mon Sep 17 00:00:00 2001 From: Midou36O Date: Mon, 5 Feb 2024 21:20:00 +0100 Subject: [PATCH] Replace www.unddit.com with undelete.pullpush.io --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 162b361..adb2754 100644 --- a/src/config.rs +++ b/src/config.rs @@ -11,7 +11,7 @@ pub static CONFIG: Lazy = Lazy::new(Config::load); // This serves as the frontend for the Pushshift API - on removed comments, this URL will // be the base of a link, to display removed content (on another site). -pub const DEFAULT_PUSHSHIFT_FRONTEND: &str = "www.unddit.com"; +pub const DEFAULT_PUSHSHIFT_FRONTEND: &str = "undelete.pullpush.io"; /// Stores the configuration parsed from the environment variables and the /// config file. `Config::Default()` contains None for each setting.