diff --git a/src/subreddit.rs b/src/subreddit.rs index 88aa542..cf286f4 100644 --- a/src/subreddit.rs +++ b/src/subreddit.rs @@ -496,7 +496,7 @@ pub async fn rss(req: Request) -> Result, String> { .into_iter() .map(|post| Item { title: Some(post.title.to_string()), - link: Some(utils::get_post_url(&post)), + link: Some(format_url(&utils::get_post_url(&post))), author: Some(post.author.name), content: Some(rewrite_urls(&post.body)), description: Some(format!( diff --git a/src/user.rs b/src/user.rs index 50a4daa..ac339db 100644 --- a/src/user.rs +++ b/src/user.rs @@ -163,7 +163,7 @@ pub async fn rss(req: Request) -> Result, String> { .into_iter() .map(|post| Item { title: Some(post.title.to_string()), - link: Some(utils::get_post_url(&post)), + link: Some(format_url(&utils::get_post_url(&post))), author: Some(post.author.name), content: Some(rewrite_urls(&post.body)), ..Default::default()