Handle 4 more unwraps

This commit is contained in:
spikecodes 2021-02-20 12:14:32 -08:00
parent 2091f26bda
commit a606e48435
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
4 changed files with 58 additions and 22 deletions

View file

@ -222,8 +222,10 @@ pub fn format_url(url: &str) -> String {
// Rewrite Reddit links to Libreddit in body of text
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()
match Regex::new(r#"href="(https|http|)://(www.|old.|np.|)(reddit).(com)/"#) {
Ok(re) => re.replace_all(text, r#"href="/"#).to_string(),
Err(_) => String::new(),
}
}
// Append `m` and `k` for millions and thousands respectively