Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wellheor1 committed Jul 22, 2023
1 parent 430bbc9 commit 9bf25b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def send(request):
resdict = json.loads(request.POST["result"])
appkey = request.POST.get("key", "")
else:
resdict = json.loads.safe_load(request.GET["result"])
resdict = json.loads(request.GET["result"])
appkey = request.GET.get("key", "")

astm_user = users.DoctorProfile.objects.filter(user__username="astm").first()
Expand Down

0 comments on commit 9bf25b4

Please sign in to comment.