From dc520e2b2fe91631afd1ccac199e90beadec8927 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Tue, 25 Nov 2025 10:11:39 +1100 Subject: [PATCH] Ignore empty studio alias in ScrapedStudio (#6313) --- pkg/models/model_scraped_item.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/model_scraped_item.go b/pkg/models/model_scraped_item.go index 131f08be1..417564db5 100644 --- a/pkg/models/model_scraped_item.go +++ b/pkg/models/model_scraped_item.go @@ -62,7 +62,7 @@ func (s *ScrapedStudio) ToStudio(endpoint string, excluded map[string]bool) *Stu ret.Details = *s.Details } - if s.Aliases != nil && !excluded["aliases"] { + if s.Aliases != nil && *s.Aliases != "" && !excluded["aliases"] { ret.Aliases = NewRelatedStrings(stringslice.FromString(*s.Aliases, ",")) }