summary refs log tree commit
path: root/lib/rack/chunked.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rack/chunked.rb')
-rw-r--r--lib/rack/chunked.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rack/chunked.rb b/lib/rack/chunked.rb
index 280d89dd..dddf9694 100644
--- a/lib/rack/chunked.rb
+++ b/lib/rack/chunked.rb
@@ -19,7 +19,7 @@ module Rack
          STATUS_WITH_NO_ENTITY_BODY.include?(status) ||
          headers['Content-Length'] ||
          headers['Transfer-Encoding']
-        [status, headers.to_hash, body]
+        [status, headers, body]
       else
         dup.chunk(status, headers, body)
       end
@@ -29,7 +29,7 @@ module Rack
       @body = body
       headers.delete('Content-Length')
       headers['Transfer-Encoding'] = 'chunked'
-      [status, headers.to_hash, self]
+      [status, headers, self]
     end
 
     def each