From 513b4a3fcaef68a48515d26f232ee2931d8cb26a Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 6 Mar 2021 11:46:19 +0000 Subject: [PATCH] . --- rapids/views.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/rapids/views.py b/rapids/views.py index 09c50c44..4f52758e 100755 --- a/rapids/views.py +++ b/rapids/views.py @@ -541,15 +541,14 @@ def loadJsonAnswer(answer): posted_answer = answer["ans"] + # qidn 1 does not hold answer data (but should always arrive prior to 2) + if answer["qidn"] == "1": + posted_answer = "" + # Normal answers are just posted with the answer "Normal" normal = False if posted_answer == "Normal": normal = True - posted_answer = "" - # We can ignore the first ab - #elif answer["qidn"] == "1" and posted_answer == "Abnormal": - # return False - if not exiting_answers: ans = CidUserAnswer(answer=posted_answer, normal=normal, cid=answer["cid"])