In namer.cfg, in the Phash section, comments say that send_phash = True is ignored if search_phash = False.
[Phash]
# Calculate and use phashes in search for matches
search_phash = False
# Should phashes be sent to tpdb if no phash match was found but a name match was.
# Requires search_phash be true or is ignored.
send_phash = True
Problem
However, in L204, search_phash is not checked if new_metadata is found, probably through manually matching a failed file.
Proposed Solutions
Create new config parameter to control calculating and sending phash for manual matches
Update so that L204 requires both send_phash and search_phash to be true
Background
In
namer.cfg
, in the Phash section, comments say thatsend_phash = True
is ignored ifsearch_phash = False
.Problem
However, in L204,
search_phash
is not checked ifnew_metadata
is found, probably through manually matching a failed file.Proposed Solutions
send_phash
andsearch_phash
to betrue