diff --git a/src/subreddit.rs b/src/subreddit.rs
index d5d5196..0db4f77 100644
--- a/src/subreddit.rs
+++ b/src/subreddit.rs
@@ -605,7 +605,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)),
pub_date: Some(DateTime::from_timestamp(post.created_ts as i64, 0).unwrap_or_default().to_rfc2822()),
diff --git a/src/user.rs b/src/user.rs
index 2fb8b0d..818f368 100644
--- a/src/user.rs
+++ b/src/user.rs
@@ -164,7 +164,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),
pub_date: Some(DateTime::from_timestamp(post.created_ts as i64, 0).unwrap_or_default().to_rfc2822()),
content: Some(rewrite_urls(&post.body)),