From f066decf27695fae9c3788aedf5a05672845df06 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 18 Apr 2021 10:31:28 -0400 Subject: [PATCH] update sitemap oops --- src/app/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/mod.rs b/src/app/mod.rs index a22a981..0776002 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -123,7 +123,7 @@ pub async fn init(cfg: PathBuf) -> Result { } for post in &everything { - urlwriter.url(format!("https://christine.website/{}", post.link))?; + urlwriter.url(post.link.clone())?; } urlwriter.end()?;