This commit is contained in:
2025-10-23 11:15:24 +02:00
parent dc31d4edb4
commit 930319d143

View File

@@ -293,8 +293,8 @@ func qrHandler(w http.ResponseWriter, r *http.Request) {
var coordinates, positionHint string var coordinates, positionHint string
err = db.QueryRow("SELECT gps, clue FROM POSITIONS WHERE id = (SELECT position_id FROM TASKS WHERE id = (SELECT id FROM TASKS WHERE order_num = ? AND difficulty_level = (SELECT difficulty_level FROM teams WHERE id = ?)))", order+1, teamID).Scan(&coordinates, &positionHint) err = db.QueryRow("SELECT gps, clue FROM POSITIONS WHERE id = (SELECT position_id FROM TASKS WHERE id = (SELECT id FROM TASKS WHERE order_num = ? AND difficulty_level = (SELECT difficulty_level FROM teams WHERE id = ?)))", order+1, teamID).Scan(&coordinates, &positionHint)
if err == sql.ErrNoRows { if err == sql.ErrNoRows {
coordinates = "" coordinates = "Konec, vraťte se."
positionHint = "" positionHint = "KONEC"
} else if err != nil { } else if err != nil {
http.Error(w, "Could not retrieve coordinates", http.StatusInternalServerError) http.Error(w, "Could not retrieve coordinates", http.StatusInternalServerError)
return return