Merge pull request #4 from enriclluelles/correct_content_length

Content-Length is supposed to be bytes, not chars
This commit is contained in:
John Bintz 2012-01-23 10:56:58 -08:00
commit 9e75660e10
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ module Rack
headers["X-Rack-LiveReload"] = '1'
end
content_length += line.length
content_length += line.bytesize
end
headers['Content-Length'] = content_length.to_s