0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 06:22:53 -04:00

🔥 chore: remove the debug macro from the code (#302)

This commit is contained in:
neon_arch 2023-11-18 21:51:21 +03:00
parent eee2f110b8
commit 03d649b97b

View File

@ -142,7 +142,7 @@ async fn results(
// check if fetched cache results was indeed fetched or it was an error and if so // check if fetched cache results was indeed fetched or it was an error and if so
// handle the data accordingly. // handle the data accordingly.
match cached_results { match cached_results {
Ok(results) => Ok(dbg!(results.clone())), Ok(results) => Ok(results),
Err(_) => { Err(_) => {
let mut safe_search_level: u8 = match config.safe_search { let mut safe_search_level: u8 = match config.safe_search {
3..=4 => config.safe_search, 3..=4 => config.safe_search,