Skip to content

Commit

Permalink
Fix batch performer tag panic (#4281)
Browse files Browse the repository at this point in the history
  • Loading branch information
DingDongSoLong4 authored Nov 12, 2023
1 parent 4715c5e commit 72779e6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/scraper/stashbox/stash_box.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 72779e6

Please sign in to comment.