mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
Restore the behavior that the "rewrite_urls_removes_backslashes_and_rewrites_url" test looks for
This commit is contained in:
parent
12e331d24b
commit
db058f6d9e
1 changed files with 7 additions and 3 deletions
10
src/utils.rs
10
src/utils.rs
|
@ -928,12 +928,13 @@ pub fn rewrite_urls(input_text: &str) -> String {
|
|||
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("\\_", "_");
|
||||
}
|
||||
}
|
||||
|
||||
// Remove (html-encoded) "\" from URLs.
|
||||
text1 = text1
|
||||
.replace("%5C", "")
|
||||
.replace("\\_", "_");
|
||||
|
||||
// Rewrite external media previews to Redlib
|
||||
loop {
|
||||
|
@ -1270,6 +1271,9 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn rewrite_urls_removes_backslashes_and_rewrites_url() {
|
||||
println!("{}", rewrite_urls(
|
||||
"<a href=\"https://new.reddit.com/r/linux%5C_gaming/comments/x/just%5C_a%5C_test%5C/\">https://new.reddit.com/r/linux\\_gaming/comments/x/just\\_a\\_test/</a>"
|
||||
));
|
||||
assert_eq!(
|
||||
rewrite_urls(
|
||||
"<a href=\"https://new.reddit.com/r/linux%5C_gaming/comments/x/just%5C_a%5C_test%5C/\">https://new.reddit.com/r/linux\\_gaming/comments/x/just\\_a\\_test/</a>"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue