Split subscription names by +

This commit is contained in:
spikecodes 2021-02-09 21:56:38 -08:00
parent 8785bc95f5
commit fee2cb1b56
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
2 changed files with 11 additions and 5 deletions

View file

@ -192,7 +192,7 @@ pub fn format_url(url: &str) -> String {
}
// Rewrite Reddit links to Libreddit in body of text
pub fn rewrite_url(text: &str) -> String {
pub fn rewrite_urls(text: &str) -> String {
let re = Regex::new(r#"href="(https://|http://|)(www.|old.|np.|)(reddit).(com)/"#).unwrap();
re.replace_all(text, r#"href="/"#).to_string()
}
@ -369,7 +369,7 @@ pub async fn fetch_posts(path: &str, fallback_title: String) -> Result<(Vec<Post
id: val(post, "id"),
title: if title.is_empty() { fallback_title.to_owned() } else { title },
community: val(post, "subreddit"),
body: rewrite_url(&val(post, "body_html")),
body: rewrite_urls(&val(post, "body_html")),
author: Author {
name: val(post, "author"),
flair: Flair {