From 3a6bc8d4cb8f4d046a30f24646a309b22750f968 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 5 Jul 2026 15:23:57 +0000 Subject: [PATCH] mobile --- quiz_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quiz_service.go b/quiz_service.go index e48e348..7eaa3cb 100644 --- a/quiz_service.go +++ b/quiz_service.go @@ -654,7 +654,7 @@ func (s *QuizService) GetBookmarkedTargets(username, category string) []TargetIn func (s *QuizService) GetBookmarkedQuestions(username, category, difficulty string) []Question { query := ` SELECT q.id, q.source, q.category, q.question_text, q.choice1, q.choice2, q.choice3, q.choice4, COALESCE(q.choice5, '') as choice5, - q.correct_answer, q.correct_answer_str, q.explanation, q.difficulty, q.passage, q.image_url, + q.correct_answer, COALESCE(q.correct_answer_str, '') as correct_answer_str, q.explanation, COALESCE(q.difficulty, '') as difficulty, COALESCE(q.passage, '') as passage, COALESCE(q.image_url, '') as image_url, COALESCE(e.explain, '') as geminiExplanation, 1 as isBookmarked, COALESCE(q.subject, '') as subject,