diff --git a/server/src/manager/data.rs b/server/src/manager/data.rs index 3fefc53..19123a8 100644 --- a/server/src/manager/data.rs +++ b/server/src/manager/data.rs @@ -182,7 +182,7 @@ pub async fn thread_system(mut app:App, bus:Bus) // Verify salted secret against user data if argon2::verify_raw(&request.secret.as_bytes(), salt, &user.secret, &argon_config).unwrap_or(false) { - println!("Authenticated user '{}' id {}", request.handle, *uid); + println!("Authenticated user '{}' id {}", user.handle, *uid); // Generate authentication token and secret response.status = STATUS_OK;