Fix check being off

This commit is contained in:
Jan Bader 2023-12-09 15:02:41 +01:00
parent 9ce2e8a927
commit 66da8393a4

View File

@ -203,7 +203,7 @@ func (fm *FilesMap) getImageClusters() []imageCluster {
currentCluster = append(currentCluster, similarImage{path: otherFile.path, distance: distance})
}
if len(currentCluster) == 0 {
if len(currentCluster) == 1 {
continue
}