mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
rss: proxy links in users and subreddit feeds, fixes #359
This commit is contained in:
parent
d7ec07cd0d
commit
b539904275
2 changed files with 2 additions and 2 deletions
|
@ -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!(
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue