fix: remove println

This commit is contained in:
Matthew Esposito 2025-02-02 23:37:16 -05:00
parent 10b32ed792
commit 78e0f9c6c3

View file

@ -934,8 +934,6 @@ pub fn rewrite_urls(input_text: &str) -> String {
// Remove (html-encoded) "\" from URLs.
text1 = text1.replace("%5C", "").replace("\\_", "_");
println!("text1 before: {text1}");
// Rewrite external media previews to Redlib
loop {
if REDDIT_PREVIEW_REGEX.find(&text1).is_none() {