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"])