diff --git a/backend/dao/result.js b/backend/dao/result.js index caa7cb626..f1aa09d8d 100644 --- a/backend/dao/result.js +++ b/backend/dao/result.js @@ -13,7 +13,7 @@ class ResultDAO { } if (!user) throw new MonkeyError(404, "User not found", "add result"); if (result.uid === undefined) result.uid = uid; - result.ir = true; + // result.ir = true; let res = await mongoDB().collection("results").insertOne(result); return { insertedId: res.insertedId,