summary refs log tree commit
path: root/lib/rack/response.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rack/response.rb')
-rw-r--r--lib/rack/response.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rack/response.rb b/lib/rack/response.rb
index d1f6a123..a7f9bf2b 100644
--- a/lib/rack/response.rb
+++ b/lib/rack/response.rb
@@ -19,7 +19,7 @@ module Rack
     attr_accessor :length
 
     def initialize(body=[], status=200, header={}, &block)
-      @status = status
+      @status = status.to_i
       @header = Utils::HeaderHash.new({"Content-Type" => "text/html"}.
                                       merge(header))
 
@@ -71,9 +71,9 @@ module Rack
 
       if [204, 304].include?(status.to_i)
         header.delete "Content-Type"
-        [status.to_i, header.to_hash, []]
+        [status.to_i, header, []]
       else
-        [status.to_i, header.to_hash, self]
+        [status.to_i, header, self]
       end
     end
     alias to_a finish           # For *response