From 59076e67b829a6147fc0f56fa73ad8e9037266ce Mon Sep 17 00:00:00 2001 From: Luis Pereira Date: Mon, 17 Nov 2025 06:13:38 +0000 Subject: [PATCH] fix: profile password change using non existing function --- auth-routes.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth-routes.lisp b/auth-routes.lisp index 3095b9a..559d99b 100644 --- a/auth-routes.lisp +++ b/auth-routes.lisp @@ -127,7 +127,7 @@ (error 'authentication-error :message "Not authenticated")) ;; Verify current password - (unless (verify-user-credentials username current-password) + (unless (authenticate-user username current-password) (error 'authentication-error :message "Current password is incorrect")) ;; Update password