Skip to content

Commit

Permalink
chore(rack3): Missed correct call in Webmachine -> Rack body hander
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jan 23, 2025
1 parent d9a7e9f commit ce956e0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/webmachine/adapters/rack3_adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ def each
yield chunk
}
elsif @request.body.respond_to?(:to_ary)
@value = @request.body.to_ary
@value.each { |chunk| yield chunk }
else
yield @request.body
Expand Down

0 comments on commit ce956e0

Please sign in to comment.