Skip to content

Commit c4cbb63

Browse files
committed
Convert header values into strings.
1 parent 391e5b6 commit c4cbb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/protocol/rack/adapter/generic.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def unwrap_headers(headers, env)
7676
env[http_key] = "#{current_value},#{value}"
7777
end
7878
else
79-
env[http_key] = value
79+
env[http_key] = value.to_s
8080
end
8181
end
8282
end

0 commit comments

Comments
 (0)