From 2c4557ccc45f9906067164e6ab3a1f3e656f414f Mon Sep 17 00:00:00 2001 From: red binder Date: Sun, 29 Mar 2026 14:50:09 +0200 Subject: [PATCH] Actually save the file this time Whoops --- src/graphql/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/graphql/mod.rs b/src/graphql/mod.rs index ac3773d..ae5db30 100644 --- a/src/graphql/mod.rs +++ b/src/graphql/mod.rs @@ -127,7 +127,7 @@ impl Query { } }; - // let nex_password = format!("{:a>16}",user.nex_password); + let nex_password = user.nex_password; Some(UserInfo { username: user.username, @@ -151,7 +151,7 @@ impl Query { .await .ok()?; - // let nex_password = format!("{:a>16}",user.nex_password); + let nex_password = user.nex_password; Some(UserInfo { username: user.username, @@ -175,7 +175,7 @@ impl Query { .await .ok()?; - // let nex_password = format!("{:a>16}",user.nex_password); + let nex_password = user.nex_password; Some(UserInfoWithPId { username: user.username,