fix(url): remove manual url decoding

This commit is contained in:
ryan 2025-02-24 19:49:20 +03:00
parent bca34d1ebc
commit b9f3214a38

View file

@ -82,10 +82,7 @@ async fn get_items_handler(
db: web::Data<Arc<Mutex<Database>>>,
url: web::Path<String>,
) -> impl Responder {
let decoded_url = urlencoding::decode(&url)
.map(|cow| cow.into_owned())
.unwrap_or_default();
get_items(db, web::Query(decoded_url)).await
get_items(db, web::Query(url.into_inner())).await
}
// Handler to create an item for a specific URL