Parcourir la source

lib/model: Partial revert of rename fix (fixes #6653) (#6656)

We can't just drop the snap because it's in use elsewhere. This should
be equally functional.
Jakob Borg il y a 5 ans
Parent
commit
651ee2ce74
1 fichiers modifiés avec 2 ajouts et 7 suppressions
  1. 2 7
      lib/model/folder.go

+ 2 - 7
lib/model/folder.go

@@ -460,13 +460,8 @@ func (f *folder) scanSubdirs(subDirs []string) error {
 			continue
 		}
 
-		if batch.full() {
-			if err := batch.flush(); err != nil {
-				return err
-			}
-			snap.Release()
-			snap = f.fset.Snapshot()
-			alreadyUsed = make(map[string]struct{})
+		if err := batch.flushIfFull(); err != nil {
+			return err
 		}
 
 		batch.append(res.File)