From 74f72022e0f0691bdb7d0812a567abb0b8d455d0 Mon Sep 17 00:00:00 2001 From: Adam French Date: Tue, 9 Dec 2025 23:15:06 +0000 Subject: [PATCH] fixed db errors --- backend/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.go b/backend/main.go index 2e5fb95..780163a 100644 --- a/backend/main.go +++ b/backend/main.go @@ -58,7 +58,7 @@ func main() { r.POST("/auth/login", store.Login) r.POST("/auth/refresh", store.RefreshToken) - r.GET("/auth/refresh", store.CheckToken) + r.GET("/auth/check", store.CheckToken) r.GET("/spotify/callback", store.CompleteSpotifyAuth) r.GET("/spotify/listening", store.ListeningTo)