rss: proxy links in users and subreddit feeds, fixes #359

This commit is contained in:
Martin Lindhe 2025-01-24 18:07:09 +01:00
parent d7ec07cd0d
commit b539904275
2 changed files with 2 additions and 2 deletions

View file

@ -496,7 +496,7 @@ pub async fn rss(req: Request<Body>) -> Result<Response<Body>, 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!(

View file

@ -163,7 +163,7 @@ pub async fn rss(req: Request<Body>) -> Result<Response<Body>, 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()