From b30b8eb93454c4742638c37cf267c10f17f4ac14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Thu, 29 Jan 2026 21:20:01 +0100 Subject: [PATCH] Fix JWT validation method name --- go_cloud/internal/http/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go_cloud/internal/http/routes.go b/go_cloud/internal/http/routes.go index afd69d4..2a46047 100644 --- a/go_cloud/internal/http/routes.go +++ b/go_cloud/internal/http/routes.go @@ -4087,7 +4087,7 @@ func getUserAvatarHandler(w http.ResponseWriter, r *http.Request, db *database.D return } - claims, err := jwtManager.ValidateToken(tokenString) + claims, err := jwtManager.Validate(tokenString) if err != nil { errors.WriteError(w, errors.CodeUnauthenticated, "Unauthorized", http.StatusUnauthorized) return