diff --git a/backend/src/api/controllers/result.ts b/backend/src/api/controllers/result.ts index 7febac483..ac1f6811a 100644 --- a/backend/src/api/controllers/result.ts +++ b/backend/src/api/controllers/result.ts @@ -161,6 +161,9 @@ export async function updateTags( if (!result.punctuation) { result.punctuation = false; } + if (!result.numbers) { + result.numbers = false; + } const user = await getUser(uid, "update tags"); const tagPbs = await checkIfTagPb(uid, user, result);