Skip to content

Commit

Permalink
Fix erroneous cache key for miscTags
Browse files Browse the repository at this point in the history
  • Loading branch information
Maista6969 authored Aug 3, 2024
1 parent d55fc05 commit 65985ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/miscTags/miscTags.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def getPerformer(p):
performer_cache[p['id']] = p2
log.debug(performer_cache)
return p2
return performer_cache[p]
return performer_cache[p['id']]


def processGroupMakeup(tag_strings, makeup_label, count, scene, tags):
Expand Down

0 comments on commit 65985ee

Please sign in to comment.