Fix secure.travis-ci.org redirect

`fullpath` starts with SCRIPT_NAME. From the Rack spec:

> The SCRIPT_NAME, if non-empty, must start with /

Fixes travis-ci/travis-ci#1278.
This commit is contained in:
Henrik Hodne 2013-07-24 16:02:32 -07:00
parent 76af32013b
commit 73213153fe

View File

@ -9,7 +9,7 @@ class RedirectSubdomain < Struct.new(:app, :from)
def call(env)
request = Rack::Request.new(env)
if request.host == from
[301, { 'Location' => "https://travis-ci.org/#{request.fullpath}", 'Content-Type' => 'text/html' }, []]
[301, { 'Location' => "https://travis-ci.org#{request.fullpath}", 'Content-Type' => 'text/html' }, []]
else
app.call(env)
end