diff --git a/cmd/downloader/downloader/util.go b/cmd/downloader/downloader/util.go index 0c96aff15..1cc79d588 100644 --- a/cmd/downloader/downloader/util.go +++ b/cmd/downloader/downloader/util.go @@ -355,7 +355,7 @@ func VerifyDtaFiles(ctx context.Context, snapDir string) error { defer logEvery.Stop() tmpSnapDir := filepath.Join(snapDir, "tmp") // snapshots are in sub-dir "tmp", if not fully downloaded - if !common.FileExist(tmpSnapDir) { + if common.FileExist(tmpSnapDir) { snapDir = tmpSnapDir } files, err := AllTorrentPaths(snapDir)