From e096c5bb00008cbae8cd680045d1831098844786 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 18 Apr 2021 10:39:53 -0400 Subject: [PATCH] Revert "update sitemap oops" This reverts commit f066decf27695fae9c3788aedf5a05672845df06. --- 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 0776002..a22a981 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(post.link.clone())?; + urlwriter.url(format!("https://christine.website/{}", post.link))?; } urlwriter.end()?;