From 2375bc6cacbcc410ec4f42a821c5e64ddfff4380 Mon Sep 17 00:00:00 2001 From: mz28k Date: Mon, 7 Apr 2025 07:58:59 +0300 Subject: [PATCH] Fix to find a match for a parent studio (#5810) --- pkg/match/scraped.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/match/scraped.go b/pkg/match/scraped.go index 86c5c103b..b66f39a35 100644 --- a/pkg/match/scraped.go +++ b/pkg/match/scraped.go @@ -30,7 +30,7 @@ type SceneRelationships struct { func (r SceneRelationships) MatchRelationships(ctx context.Context, s *models.ScrapedScene, endpoint string) error { thisStudio := s.Studio for thisStudio != nil { - if err := ScrapedStudio(ctx, r.StudioFinder, s.Studio, endpoint); err != nil { + if err := ScrapedStudio(ctx, r.StudioFinder, thisStudio, endpoint); err != nil { return err }