fix: error when trying to update result tags

This commit is contained in:
Miodec 2024-02-29 15:10:48 +01:00
parent e6666c48c3
commit f7f09d16b1

View file

@ -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);