From 13949ed0d4006421934a9e2e6f91b3ec21222e25 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Wed, 2 Apr 2025 03:38:44 +0100 Subject: fix feed urls --- src/posts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/posts.rs') diff --git a/src/posts.rs b/src/posts.rs index 93c9179..e16b64f 100644 --- a/src/posts.rs +++ b/src/posts.rs @@ -20,7 +20,7 @@ pub trait Post { fn content(&self) -> &str; fn link(&self) -> String { - "https://en.blos.sm/posts/".to_owned() + self.id() + "https://blos.sm/posts/".to_owned() + self.id() } fn get_tags<'a>(posts: &'a Vec) -> Vec<&'a str> -- cgit