Add performer aliases to stash-box tagging/scraping (#2091)

* Add performer aliases to stash-box tagging/scraping
This commit is contained in:
InfiniteTF
2021-12-07 23:36:06 +01:00
committed by GitHub
parent 70d9a05580
commit f3ab6578d9
3 changed files with 7 additions and 0 deletions

View File

@@ -606,6 +606,11 @@ func performerFragmentToScrapedScenePerformer(p graphql.PerformerFragment) *mode
sp.FakeTits = enumToStringPtr(p.BreastType, true)
}
if len(p.Aliases) > 0 {
alias := strings.Join(p.Aliases, ", ")
sp.Aliases = &alias
}
return sp
}