diff options
author | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 14:47:07 +0300 |
---|---|---|
committer | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 14:47:07 +0300 |
commit | e14463c1033bce540bb254ec49b92673fc04a3f9 (patch) | |
tree | d843747f8a7b8bd538cc116be5b5a6cdcf7ac30a | |
parent | 7243b0492390bb870084717800a0015dede3a5bc (diff) |
fix: properly fetch question from DB in HandleAnswer
-rw-r--r-- | internal/handlers/main.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/handlers/main.go b/internal/handlers/main.go index 686b0ce..2fe749c 100644 --- a/internal/handlers/main.go +++ b/internal/handlers/main.go @@ -50,6 +50,14 @@ func (h *Handlers) HandleAnswer(w http.ResponseWriter, r *http.Request) { "selected", selectedIndex, "question_id", questionID) + // Get question from database + question, err := h.repo.DBGetQuestion(questionID) + if err != nil { + h.log.Error("failed to get question", "error", err, "question_id", questionID) + abortWithError(w, "Question not found") + return + } + var feedback string if selectedIndex == fmt.Sprint(question.CorrectIndex) { feedback = `<div class="feedback">Correct! 🎉</div>` |