don't skip processing when response's status code isn't 200

This commit is contained in:
Theo Bittencourt 2013-05-13 13:43:23 -03:00
parent 176ce40003
commit d665d6e3f0
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ module Rack
end
def html?
@headers['Content-Type'] =~ %r{text/html} and @status == 200
@headers['Content-Type'] =~ %r{text/html}
end
end
end