Skip to content

Commit

Permalink
MAT-7584 fix qrda export issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Cecilia Liu committed Aug 12, 2024
1 parent 3579db5 commit 5925264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/web_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def as_json(*args)
measure_dto = request.params # Uses the Rack::JSONBodyParser middleware

# Prepare CQM Measure
madie_measure = JSON.parse(measure_dto["measure"])
madie_measure = JSON.parse(measure_dto["measure"],max_nesting: 150)
measure = CQM::Measure.new(madie_measure) unless measure_dto["measure"].nil?
if measure.nil?
return [400, "Measure is empty."]
Expand Down

0 comments on commit 5925264

Please sign in to comment.