mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
Fix unhandled error (#4700)
This commit is contained in:
parent
32770203ba
commit
213c2830d1
1 changed files with 4 additions and 0 deletions
|
|
@ -106,6 +106,10 @@ func (r *queryResolver) FindImages(
|
|||
}
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
ret = &FindImagesResultType{
|
||||
Count: result.Count,
|
||||
Images: images,
|
||||
|
|
|
|||
Loading…
Reference in a new issue