diff options
author | Grail Finder <wohilas@gmail.com> | 2025-04-05 16:51:55 +0300 |
---|---|---|
committer | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 16:51:55 +0300 |
commit | 3374cb0fb2ce024eb5da78dc63c7313db8ec4c95 (patch) | |
tree | 92d8e5d3f31d8f4bf7056c278f5cdd86ff0da149 | |
parent | 0a4bfe6ece1a33fbf6b0d972d0afd3a0231f81bc (diff) |
refactor: fix variable declaration and remove duplicate code
-rw-r--r-- | internal/handlers/main.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/handlers/main.go b/internal/handlers/main.go index f0225f6..abd2226 100644 --- a/internal/handlers/main.go +++ b/internal/handlers/main.go @@ -135,7 +135,7 @@ func (h *Handlers) renderQuestion(w http.ResponseWriter, question *models.Questi *models.Question ShowNext bool } - + err = tmpl.ExecuteTemplate(w, "main", &TemplateData{ Question: question, ShowNext: h.showNext, @@ -143,8 +143,7 @@ func (h *Handlers) renderQuestion(w http.ResponseWriter, question *models.Questi if err != nil { h.log.Error("failed to render template", "error", err) } -} - question, err := h.repo.DBGetQuestion("1") + question, err = h.repo.DBGetQuestion("1") if err != nil { h.log.Error("failed to get question", "error", err) abortWithError(w, "Question not found") |