From 30dab51a8829bedbee1f5c7d2fd998f1cafa3321 Mon Sep 17 00:00:00 2001 From: Gianmaria Del Monte Date: Thu, 9 Mar 2023 18:12:48 +0100 Subject: [PATCH] fix --- pkg/cbox/group/rest/rest.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/cbox/group/rest/rest.go b/pkg/cbox/group/rest/rest.go index 06fdcd93b5..f2501677f1 100644 --- a/pkg/cbox/group/rest/rest.go +++ b/pkg/cbox/group/rest/rest.go @@ -167,8 +167,7 @@ func (m *manager) fetchAllGroupAccounts() error { } // filter computing groups - is, ok := groupData["isComputingGroup"].(bool) - if ok && is { + if is, ok := groupData["isComputingGroup"].(bool); ok && is { continue }