mirror of
https://github.com/JaCoB1123/dupe-finder.git
synced 2025-07-02 00:28:54 +02:00
Fix condition for adding a cluster
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user