Fix: Handle 404 responses properly when loading answers.json #2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bug Fix: Prevent 404 Error Responses from Corrupting Quiz Answers
Problem
When the quiz application starts, it fetches
/answers.jsonto load any previously saved answers. If this file doesn't exist (common on first run), the server returns a 404 response with JSON content:{"error": "Not Found"}The frontend incorrectly treated this error response as valid answer data, causing corrupted
answers.jsonfiles:{ "error": "Not Found", ← ❌ Server error mixed with quiz data "civilwar": { "value": "1861-1865", "correctAnswer": "1861-1865", "isCorrect": true }, "capital": { "value": "Paris", "correctAnswer": "Paris", "isCorrect": true } }This corruption caused the
format_answers.pyscript to crash:Root Cause
The frontend fetch logic was not checking
response.okbefore parsing JSON:Solution
Modified the fetch logic to properly handle HTTP error responses:
Testing
answers.jsonand verified clean startup without error pollutionformat_answers.pyruns successfully after taking quiz