From 35927287f17763dfcd27fd98f8f40da934465aa3 Mon Sep 17 00:00:00 2001 From: Midou36O Date: Mon, 5 Feb 2024 22:50:09 +0100 Subject: [PATCH] Replace www.unddit.com with undelete.pullpush.io (#42) * Replace www.unddit.com with undelete.pullpush.io * Update comment --------- Co-authored-by: Matthew Esposito --- src/config.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.rs b/src/config.rs index 162b361..21a3adc 100644 --- a/src/config.rs +++ b/src/config.rs @@ -9,9 +9,9 @@ use std::{env::var, fs::read_to_string}; // first request) and contains the instance settings. 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"; +// This serves as the frontend for an archival 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 = "undelete.pullpush.io"; /// Stores the configuration parsed from the environment variables and the /// config file. `Config::Default()` contains None for each setting.