mirror of
https://github.com/stashapp/stash.git
synced 2025-12-27 02:32:56 +01:00
Fix batch performer tag panic (#4281)
This commit is contained in:
parent
4715c5ebb2
commit
72779e618d
1 changed files with 4 additions and 0 deletions
|
|
@ -825,6 +825,10 @@ func (c Client) FindStashBoxPerformerByID(ctx context.Context, id string) (*mode
|
|||
return nil, err
|
||||
}
|
||||
|
||||
if performer.FindPerformer == nil {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
ret := performerFragmentToScrapedPerformer(*performer.FindPerformer)
|
||||
|
||||
r := c.repository
|
||||
|
|
|
|||
Loading…
Reference in a new issue