Prevent duplicate API calls

This commit is contained in:
Charles Ewert 2020-02-23 14:10:28 -05:00
parent bfe99ca2b3
commit 22e3d422aa

View File

@ -64,7 +64,7 @@ function getJson(req)
if data = invalid or data = ""
return invalid
end if
json = ParseJson(req.GetToString())
json = ParseJson(data)
return json
end function