Fix unhandled error (#4700)

This commit is contained in:
WithoutPants 2024-03-19 15:08:20 +11:00 committed by GitHub
parent 32770203ba
commit 213c2830d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -106,6 +106,10 @@ func (r *queryResolver) FindImages(
}
}
if err != nil {
return err
}
ret = &FindImagesResultType{
Count: result.Count,
Images: images,