mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
Fix to find a match for a parent studio (#5810)
This commit is contained in:
parent
87d01e86fd
commit
2375bc6cac
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ type SceneRelationships struct {
|
||||||
func (r SceneRelationships) MatchRelationships(ctx context.Context, s *models.ScrapedScene, endpoint string) error {
|
func (r SceneRelationships) MatchRelationships(ctx context.Context, s *models.ScrapedScene, endpoint string) error {
|
||||||
thisStudio := s.Studio
|
thisStudio := s.Studio
|
||||||
for thisStudio != nil {
|
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
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue