mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 21:03:22 +01:00
Merge branch 'master' of https://github.com/stashapp/stash
This commit is contained in:
commit
f0775119a6
1 changed files with 4 additions and 0 deletions
|
|
@ -65,6 +65,10 @@ func GetPerformer(performerName string) (*models.ScrapedPerformer, error) {
|
|||
if strings.ToLower(s.Text()) == strings.ToLower(performerName) {
|
||||
return true
|
||||
}
|
||||
alias := s.ParentsFiltered(".babeNameBlock").Find(".babeAlias").First();
|
||||
if strings.EqualFold(alias.Text(), "aka " + performerName) {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue