remove leftover print

This commit is contained in:
Lukas Werner 2025-07-02 00:52:44 -07:00
parent 078b8ef82b
commit 5d2b82876d
No known key found for this signature in database

View File

@ -182,7 +182,6 @@ func (s *OAuthStore) CallbackHandler() http.Handler {
http.Error(w, "Failed to get info", http.StatusInternalServerError) http.Error(w, "Failed to get info", http.StatusInternalServerError)
return return
} }
println(userID)
sess, err := s.CreateSession(userID, time.Hour*24) sess, err := s.CreateSession(userID, time.Hour*24)
if err != nil { if err != nil {
http.Error(w, "Failed to create session", http.StatusInternalServerError) http.Error(w, "Failed to create session", http.StatusInternalServerError)