1
0
Fork 0

Fix trailing slash with check new version

This commit is contained in:
Michael 2019-08-29 09:56:04 +02:00 committed by Traefiker Bot
parent 72e67bf4e9
commit b113972bcf
3 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ import (
"net/url"
"github.com/containous/traefik/v2/pkg/log"
"github.com/google/go-github/v27/github"
"github.com/google/go-github/v28/github"
"github.com/gorilla/mux"
goversion "github.com/hashicorp/go-version"
"github.com/unrolled/render"
@ -54,7 +54,7 @@ func CheckNewVersion() {
return
}
client := github.NewClient(nil)
updateURL, err := url.Parse("https://update.traefik.io")
updateURL, err := url.Parse("https://update.traefik.io/")
if err != nil {
log.Warnf("Error checking new version: %s", err)
return