summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrail Finder (aider) <wohilas@gmail.com>2025-04-05 14:47:07 +0300
committerGrail Finder (aider) <wohilas@gmail.com>2025-04-05 14:47:07 +0300
commite14463c1033bce540bb254ec49b92673fc04a3f9 (patch)
treed843747f8a7b8bd538cc116be5b5a6cdcf7ac30a
parent7243b0492390bb870084717800a0015dede3a5bc (diff)
fix: properly fetch question from DB in HandleAnswer
-rw-r--r--internal/handlers/main.go8
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>`