From faa1f7e8673ca308dbb65ccd66bc50e28fa29bf9 Mon Sep 17 00:00:00 2001 From: Eran Turgeman Date: Sun, 15 Dec 2024 12:32:07 +0200 Subject: [PATCH] removed comment --- xsc/services/profile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsc/services/profile.go b/xsc/services/profile.go index 9c1e2c43d..23184e1a5 100644 --- a/xsc/services/profile.go +++ b/xsc/services/profile.go @@ -156,6 +156,6 @@ func (cp *ConfigurationProfileService) GetConfigurationProfileByUrl(url string) } var profile ConfigProfile - err = errorutils.CheckError(json.Unmarshal(body, &profile)) // TODO eran check about ConfigProfile structure. should we expect the repository info INSIDE the returned config profile? if not delete the ConfigProfileRepository part from frogbot + err = errorutils.CheckError(json.Unmarshal(body, &profile)) return &profile, err }