Skip to content

Commit

Permalink
Include meta
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Nov 30, 2024
1 parent 8090b92 commit d1dde04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/trackers/COMMON.py
Original file line number Diff line number Diff line change
@@ -705,7 +705,7 @@ def process_exclusion(each):
console.log(f"[yellow]{check['exclude_msg'](each)}")
return True

if not self.has_matching_hdr(file_hdr, target_hdr):
if not self.has_matching_hdr(file_hdr, target_hdr, meta):
log_exclusion(f"HDR mismatch: Expected {target_hdr}, got {file_hdr}", each)
return True

@@ -777,7 +777,7 @@ def refine_hdr_terms(self, hdr):
terms.add("HDR")
return terms

def has_matching_hdr(self, file_hdr, target_hdr):
def has_matching_hdr(self, file_hdr, target_hdr, meta):
"""
Check if the HDR terms match or are compatible.
"""

0 comments on commit d1dde04

Please sign in to comment.