mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 13:37:40 +03:00
Fix links not being converted when multiple emojis are in one comment
This commit is contained in:
parent
041ecceeaf
commit
9ea2c9e9f0
1 changed files with 14 additions and 6 deletions
|
@ -919,12 +919,20 @@ pub fn rewrite_urls(input_text: &str) -> String {
|
|||
// Rewrite Reddit links to Redlib
|
||||
REDDIT_REGEX.replace_all(input_text, r#"href="/"#)
|
||||
.to_string();
|
||||
|
||||
loop {
|
||||
if REDDIT_EMOJI_REGEX.find(&text1).is_none() {
|
||||
break;
|
||||
} else {
|
||||
text1 = REDDIT_EMOJI_REGEX
|
||||
.replace_all(&text1, format_url(REDDIT_EMOJI_REGEX.find(&text1).map(|x| x.as_str()).unwrap_or_default()))
|
||||
.to_string()
|
||||
// Remove (html-encoded) "\" from URLs.
|
||||
.replace("%5C", "")
|
||||
.replace("\\_", "_");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Rewrite external media previews to Redlib
|
||||
loop {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue