diff options
author | LarsVomMars | 2021-01-21 12:48:36 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-21 12:48:36 +0100 |
commit | 448f455186ee695ce0c70574db4fe2b431ad6c55 (patch) | |
tree | 707a828b1fbb4e10ab4ba0f796690110d39cde1a /profile/index.js | |
parent | fa4026fd87b17cc2c69f23da516f7399aae20f67 (diff) |
FIXERINIO
Diffstat (limited to 'profile/index.js')
-rw-r--r-- | profile/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/profile/index.js b/profile/index.js index fcdf877..ded1ec4 100644 --- a/profile/index.js +++ b/profile/index.js @@ -17,7 +17,7 @@ app.get("/api/user/:uid", async (req, res) => { for (const answer of answers) { const qid = questions.findIndex((question) => question.id === answer.question_id); - if (qid !== undefined) questions[qid].answer = answer.answer; + if (qid >= 0) questions[qid].answer = answer.answer; } res.json({ user: user[0], questions }); }); @@ -33,7 +33,7 @@ app.get("/api/questions", async (req, res) => { for (const answer of answers) { const qid = questions.findIndex((question) => question.id === answer.question_id); - if (qid !== undefined) questions[qid].answer = answer.answer; + if (qid >= 0) questions[qid].answer = answer.answer; } res.json(questions); }); |