Fixed a bug in the HTTP:build_url_http function.

This commit is contained in:
Seth Hall 2011-06-19 03:02:15 -04:00
parent 93f1b53165
commit 856fd37759

View file

@ -36,5 +36,5 @@ function build_url(h: Info): string
function build_url_http(h: Info): string
{
return fmt("http://%s", build_url);
return fmt("http://%s", build_url(h));
}