Skip to content

Commit

Permalink
Ailed to spell correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
jm8 committed Oct 26, 2024
1 parent d2a802f commit 0a787a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord_oauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (r *Router) DiscordCallback(w http.ResponseWriter, req *http.Request) {
tx, err := r.db.Begin()
if err != nil {
log.Println("Discord callback: Failed to start transaction", err, "User id =", userId)
http.Error(w, "ailed to get user", http.StatusForbidden)
http.Error(w, "Failed to get user", http.StatusForbidden)
return
}
row := tx.QueryRow("SELECT discord_id FROM users WHERE idm_id = ?", userId)
Expand Down

0 comments on commit 0a787a8

Please sign in to comment.