From 78e0f9c6c3843a51348d3c7928ef253315e1d602 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sun, 2 Feb 2025 23:37:16 -0500 Subject: [PATCH] fix: remove println --- src/utils.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils.rs b/src/utils.rs index 5d060d9..ca7f76f 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -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() {