From 4958d3a881117ef8058803b0ed7f06e6a711eb67 Mon Sep 17 00:00:00 2001 From: dannyzou18 Date: Thu, 16 May 2024 20:58:27 -0400 Subject: [PATCH] fixed bug --- src/upload.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/upload.rs b/src/upload.rs index b3c48b7..2ca036c 100644 --- a/src/upload.rs +++ b/src/upload.rs @@ -149,8 +149,6 @@ pub async fn upload(data: MultipartData) -> Result<(), ServerFnError> { while let Ok(Some(mut field)) = data.next_field().await { let name = field.name().unwrap_or_default().to_string(); - println!("Field name: {}", name); - match name.as_str() { "title" => { title = Some(extract_field(field).await?); }, "artist_ids" => { artist_ids = Some(validate_artist_ids(field).await?); },