mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-17 11:06:17 +08:00
no longer checking if result was using input rewrite
This commit is contained in:
parent
1a12c2cb7e
commit
9671c8115d
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue