Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[phashDuplicateTagger] Normalize tags on duplicate scene processing #112

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions plugins/phashDuplicateTagger/phashDuplicateTagger.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,21 @@ def process_duplicates(duplicate_list):
for i, group in enumerate(duplicate_list):
log.progress(i/total)
filtered_group = []
unified_tags = []
for scene in group:
tag_ids = [ t['id'] for t in scene['tags'] ]
if ignore_tag_id in tag_ids:
log.debug(f"Ignore {scene['id']} {scene['title']}")
else:
unified_tags = unified_tags + list(set(tag_ids) - set(unified_tags))
filtered_group.append(scene)
stash.update_scenes({
'ids': [scene['id'] for scene in group],
'tag_ids': {
'mode': 'ADD',
'ids': unified_tags
}
})
if len(filtered_group) > 1:
tag_files(filtered_group)

Expand Down