Skip to content

Commit

Permalink
fixing gosn to items
Browse files Browse the repository at this point in the history
  • Loading branch information
clayrosenthal authored and jonhadfield committed Dec 13, 2023
1 parent 33cdf60 commit 4dedf6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -418,12 +418,12 @@ func addTags(ati addTagsInput) (ato addTagsOutput, err error) {
if parentRef != nil {
return ato, errors.New("multiple parent tags found, specify by UUID")
}
itemRef := gosn.ItemReference{
itemRef := items.ItemReference{
UUID: tag.GetUUID(),
ContentType: "Tag",
ReferenceType: "TagToParentTag",
}
parentRef = gosn.ItemReferences{itemRef}
parentRef = items.ItemReferences{itemRef}
}
}
}
Expand Down

0 comments on commit 4dedf6a

Please sign in to comment.