From 85b05069ae8e16ef23be0be817bd001995712ba8 Mon Sep 17 00:00:00 2001 From: z9fr Date: Sun, 3 Mar 2024 18:22:19 +0530 Subject: [PATCH] fix: remove debug replace lines --- src/post/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/post/mod.rs b/src/post/mod.rs index fc255e2..ac9608c 100644 --- a/src/post/mod.rs +++ b/src/post/mod.rs @@ -45,8 +45,7 @@ impl Post { .front_matter .image .clone() - .unwrap_or_else(|| format!("https://{}/static/image/avatar.jpeg", domain)) - .replace("https://z9fr.xyz", "http://localhost:3030"); + .unwrap_or_else(|| format!("https://{}/static/image/avatar.jpeg", domain)); } }