From ce38d65e450f44190c2ba4495eb563521c3687c5 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Thu, 10 Aug 2023 20:25:19 +0200 Subject: [PATCH] Fix Create Resource Type ID Fix determining the id for the resource type password-and-description. --- helper/resources.go | 1 + 1 file changed, 1 insertion(+) diff --git a/helper/resources.go b/helper/resources.go index bdfd9ee..0d30014 100644 --- a/helper/resources.go +++ b/helper/resources.go @@ -18,6 +18,7 @@ func CreateResource(ctx context.Context, c *api.Client, folderParentID, name, us for _, tmp := range types { if tmp.Slug == "password-and-description" { rType = &tmp + break } } if rType == nil {