mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-17 20:49:02 +00:00
In PE's EXIF mode, don't match pictures without EXIF timestamp.
[#219 state:fixed]
This commit is contained in:
parent
96c3d63557
commit
2c6339f7a2
@ -17,7 +17,8 @@ def getmatches(files, match_scaled, j):
|
||||
timestamp2pic = defaultdict(set)
|
||||
for picture in j.iter_with_progress(files, tr("Read EXIF of %d/%d pictures")):
|
||||
timestamp = picture.exif_timestamp
|
||||
timestamp2pic[timestamp].add(picture)
|
||||
if timestamp:
|
||||
timestamp2pic[timestamp].add(picture)
|
||||
if '0000:00:00 00:00:00' in timestamp2pic: # very likely false matches
|
||||
del timestamp2pic['0000:00:00 00:00:00']
|
||||
matches = []
|
||||
|
Loading…
Reference in New Issue
Block a user