mirror of
https://github.com/stashapp/stash.git
synced 2026-04-20 22:11:32 +02:00
Fix performer tags not applying on scene scrapers (#2339)
This commit is contained in:
parent
77e95cdb07
commit
22321c2b62
1 changed files with 1 additions and 1 deletions
|
|
@ -840,7 +840,7 @@ func (s mappedScraper) processScene(ctx context.Context, q mappedQuery, r mapped
|
|||
for _, p := range performerTagResults {
|
||||
tag := &models.ScrapedTag{}
|
||||
p.apply(tag)
|
||||
ret.Tags = append(ret.Tags, tag)
|
||||
performer.Tags = append(performer.Tags, tag)
|
||||
}
|
||||
|
||||
ret.Performers = append(ret.Performers, performer)
|
||||
|
|
|
|||
Loading…
Reference in a new issue