Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #337 from Bidaya0/fix-param-name-in-vul-detail
Browse files Browse the repository at this point in the history
Fix param name in vul detail
  • Loading branch information
Bidaya0 committed Dec 22, 2021
2 parents d2af62a + e31ec30 commit 70271da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iast/views/vul_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def is_need_http_detail(name):

def parse_param_name(param_name):
try:
res = json.dumps(param_name)
res = json.loads(param_name)
return res
except:
return {}
Expand Down

0 comments on commit 70271da

Please sign in to comment.