templates/lib/body_parser.rb in wd_sinatra-0.2.1 vs templates/lib/body_parser.rb in wd_sinatra-0.2.2

- old
+ new

@@ -5,10 +5,10 @@ # Parses the body def parse(params, body, content_type) case content_type when JSON_TYPE - params.merge(json_parser.parse(body.string)) + params.merge(json_parser.parse(body.read)) else params end end