diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zorglub/node.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index 8b1bee0..0e4ef20 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -276,7 +276,7 @@ module Zorglub catch(:stop_realize) { feed! response.write @content - response.header['Content-Type'] = ( @mime || 'text/html' ) + response.header['Content-Type'] ||= ( @mime || 'text/html' ) response.finish response } |