From 77fcfa0e3abb202a91c21a79918a0e552331802a Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 21 Nov 2021 21:05:45 +0000 Subject: [PATCH] . --- rapids/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rapids/views.py b/rapids/views.py index de1a2bc4..ab92941d 100755 --- a/rapids/views.py +++ b/rapids/views.py @@ -1111,7 +1111,7 @@ class ExamClone(ExamCloneMixin, ExamCreate): def get_question_by_hash(request): if request.is_ajax() and request.method == "POST": - hash = json.loads(request.POST.get("hash")) + hash = request.POST.get("hash") try: question = RapidImage.objects.get(image_md5_hash=hash)