From 6d7fd4395d8d06e4cfb05f3897fefe301473ab6f Mon Sep 17 00:00:00 2001 From: David Janowski Date: Thu, 22 Jun 2023 09:04:52 +0200 Subject: [PATCH] fixed issue #2 --- services/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/user.go b/services/user.go index eddb211..9426441 100644 --- a/services/user.go +++ b/services/user.go @@ -151,7 +151,7 @@ func uploadNodes(ctx context.Context, graphConnection database.GraphConnection, allGeneralTags = append(allGeneralTags, post.Tags.General...) allCharacterTags = append(allCharacterTags, post.Tags.Character...) - allCopyrightTags = append(allCopyrightTags, post.Tags.Character...) + allCopyrightTags = append(allCopyrightTags, post.Tags.Copyright...) allArtistTags = append(allArtistTags, post.Tags.Artist...) uniqueGeneralTags = utils.UniqueNonEmptyElementsOf(allGeneralTags)