diff --git a/web/web.go b/web/web.go index 717197d9e..0a789d882 100644 --- a/web/web.go +++ b/web/web.go @@ -251,7 +251,7 @@ func MustBuildServerURL(pathPrefix string) string { if err != nil { panic(err) } - return fmt.Sprintf("http://%s:%s/%s", hostname, port, pathPrefix) + return fmt.Sprintf("http://%s:%s%s/", hostname, port, pathPrefix) } func getHostname() (string, error) {