From 6d2719f0460b754c3f3a7983eb8777a8917c7da3 Mon Sep 17 00:00:00 2001 From: reidlab Date: Wed, 20 Sep 2023 18:50:02 -0700 Subject: [PATCH] remove random println --- src/template_endpoints/reupload.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/template_endpoints/reupload.rs b/src/template_endpoints/reupload.rs index c46b8b7..2f1c39d 100644 --- a/src/template_endpoints/reupload.rs +++ b/src/template_endpoints/reupload.rs @@ -74,8 +74,6 @@ pub async fn post_reupload(input: Form) -> Template { use crate::schema::levels::dsl::*; use crate::models::{Level, NewLevel}; - println!("{:?}", level_data.get("k3")); - let new_level = NewLevel { name: level_data.get("k2").expect("level name not found").to_string(), user_id: crate::helpers::reupload::REUPLOAD_ACCOUNT_ID.read().expect("poisoned lock!!").to_string().parse::().expect("reupload account id not int (shouldnt ever happen)"),