Set domain to be nil by default

This commit is contained in:
Omar Roth 2019-03-03 11:55:14 -06:00
parent 66605196ad
commit 17cf0772fb
3 changed files with 9 additions and 4 deletions

View file

@ -200,7 +200,12 @@ def make_host_url(ssl, host)
scheme = "http://"
end
return "#{scheme}#{host}"
if host
host = host.lchop(".")
return "#{scheme}#{host}"
else
return ""
end
end
def get_referer(env, fallback = "/")