mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 05:57:40 +03:00
Handle three unwraps
This commit is contained in:
parent
31bf8c802e
commit
4f09333cd7
4 changed files with 15 additions and 12 deletions
|
@ -528,7 +528,7 @@ pub fn rewrite_urls(input_text: &str) -> String {
|
|||
match Regex::new(r"https://external-preview\.redd\.it(.*)[^?]") {
|
||||
Ok(re) => {
|
||||
if re.is_match(&text1) {
|
||||
re.replace_all(&text1, format_url(re.find(&text1).unwrap().as_str())).to_string()
|
||||
re.replace_all(&text1, format_url(re.find(&text1).map(|x| x.as_str()).unwrap_or_default())).to_string()
|
||||
} else {
|
||||
text1
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue