From 6fc7760ae56a6d7cfa71ca3323a712ced77737d5 Mon Sep 17 00:00:00 2001 From: Simon Beck Date: Thu, 2 May 2024 14:15:04 +0200 Subject: [PATCH] Really fix the typo this time --- pkg/maintenance/helm/helmpatcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/maintenance/helm/helmpatcher.go b/pkg/maintenance/helm/helmpatcher.go index 85ec2f4a8..cf38e8fc1 100644 --- a/pkg/maintenance/helm/helmpatcher.go +++ b/pkg/maintenance/helm/helmpatcher.go @@ -221,7 +221,7 @@ func GetRelease(ctx context.Context, k8sClient client.Client, instanceNamespace func (h *ImagePatcher) getVersions(imageURL string) (VersionLister, error) { // We're using docker hub's rich api to list the image tags, if it's on docker hub. - if strings.Contains(imageURL, "https//hub.docker.com") { + if strings.Contains(imageURL, "https://hub.docker.com") { return h.getHubVersions(imageURL) } // For the rest we use the default registry API.