- Issue created by @szato
In the DuplicateFinder::findDuplicates($file) method, there is a code for checking exact duplicates:
if ($file_hash = $duplicate_file_hash) {
$duplicates['exact'][] = $row;
$exact_duplicate = TRUE;
}
instead of
if ($file_hash === $duplicate_file_hash) {
$duplicates['exact'][] = $row;
$exact_duplicate = TRUE;
}
Run duplicate finder and you will get 'exact' duplicates even if some of the listed duplicates aren't exact (don't have the same md5 hash).
use === instead of =
-
-
-
-
Active
1.2
Code