diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2024-08-13 14:31:33 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2024-08-13 14:31:33 +0200 |
commit | 19d49f690c438327ee7cf4f5ce683b992333a279 (patch) | |
tree | 7572924b363f03e0ae9453424afd2ab637c653f0 /lib | |
parent | bb448b1677f428b0d813232492f6ba02ddb33372 (diff) | |
download | zorglub-19d49f690c438327ee7cf4f5ce683b992333a279.zip zorglub-19d49f690c438327ee7cf4f5ce683b992333a279.tar.gz |
Content-Type -> content-type
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zorglub/node.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index 84cba92..d468280 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -248,7 +248,7 @@ module Zorglub $stderr << " !! #{node.class.name}::#{meth} not found\n" if app.opt :debug resp = node.response resp.status = 404 - resp['Content-Type'] = 'text/plain' + resp['content-type'] = 'text/plain' resp.write "%<node.class.name>s mapped at %<node.map>p can't respond to : %<node.meth>p" resp end @@ -276,7 +276,7 @@ module Zorglub catch(:stop_realize) do feed! response.write @content - response.headers['Content-Type'] ||= @mime || 'text/html' + response.headers['content-type'] ||= @mime || 'text/html' response.finish response end |