mirror of
https://github.com/JaCoB1123/dupe-finder.git
synced 2025-05-18 06:01:56 +02:00
Fix condition for adding a cluster
This commit is contained in:
parent
eb6e492251
commit
ceab693f34
@ -35,7 +35,7 @@ func (fm *FilesMap) getImageClusters() []imageCluster {
|
||||
currentCluster = append(currentCluster, similarImage{path: otherFile.path, distance: distance})
|
||||
}
|
||||
|
||||
if len(currentCluster) > 1 {
|
||||
if len(currentCluster) <= 1 {
|
||||
continue
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user