Skip to content

Commit

Permalink
Merge pull request #22 from MeasureAuthoringTool/MAT-7584_qrdaExportF…
Browse files Browse the repository at this point in the history
…ailing

Mat 7584 qrda export failing
  • Loading branch information
sb-cecilialiu authored Aug 12, 2024
2 parents 3579db5 + 922eefb commit eeb53da
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: 512)
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 eeb53da

Please sign in to comment.