mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Fix gallery scan (#2594)
The incorrect error check means that images is always 0, which means scanImages is also always true, which causes the images inside the zip to be unnecessarily rescanned every time.
This commit is contained in:
@@ -25,7 +25,7 @@ func (t *ScanTask) scanGallery(ctx context.Context) {
|
||||
var err error
|
||||
g, err = r.Gallery().FindByPath(path)
|
||||
|
||||
if g != nil && err != nil {
|
||||
if g != nil && err == nil {
|
||||
images, err = r.Image().CountByGalleryID(g.ID)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error getting images for zip gallery %s: %s", path, err.Error())
|
||||
|
||||
Reference in New Issue
Block a user