Merge pull request #37 from theo-bittencourt/dont-skip-processing-when-code-isnt-200
don't skip processing when response's status code isn't 200
This commit is contained in:
commit
25a5d217f5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue