From eb30dc0c51b7edf81b512fcdb40c7c618a9a360a Mon Sep 17 00:00:00 2001 From: Samuel Lucidi Date: Tue, 2 Jul 2024 16:37:16 -0400 Subject: [PATCH] :bug: Use tag source from Tagger (#104) Signed-off-by: Sam Lucidi --- cmd/tagger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tagger.go b/cmd/tagger.go index 4e650f0..07e2291 100644 --- a/cmd/tagger.go +++ b/cmd/tagger.go @@ -110,7 +110,7 @@ func (r *Tagger) ensureTags(catMap map[string]uint, tags []string) (tagIds []uin // ensureAssociated ensure wanted tags are associated. func (r *Tagger) ensureAssociated(appID uint, wanted []uint) (err error) { tags := addon.Application.Tags(appID) - tags.Source(Source) + tags.Source(r.Source) err = tags.Replace(wanted) return }