Add death date fetching from stash-box (#5653)

This commit is contained in:
InfiniteStash
2025-02-11 05:09:50 +01:00
committed by GitHub
parent d2daf6c69f
commit 638398808b
4 changed files with 425 additions and 101 deletions

View File

@@ -652,6 +652,10 @@ func performerFragmentToScrapedPerformer(p graphql.PerformerFragment) *models.Sc
sp.Birthdate = padFuzzyDate(p.BirthDate)
}
if p.DeathDate != nil {
sp.DeathDate = padFuzzyDate(p.DeathDate)
}
if p.Gender != nil {
sp.Gender = translateGender(p.Gender)
}