lib/falcon/adapters/rack.rb in falcon-0.34.2 vs lib/falcon/adapters/rack.rb in falcon-0.34.3

- old
+ new

@@ -75,10 +75,10 @@ def unwrap_headers(headers, env) headers.each do |key, value| http_key = "HTTP_#{key.upcase.tr('-', '_')}" if current_value = env[http_key] - env[http_key] = "#{current_value}\n#{value}" + env[http_key] = "#{current_value};#{value}" else env[http_key] = value end end end