Skip to content

Commit c3de80e

Browse files
authored
Fixed e621_tagger misassigned performers (#644)
1 parent 5ceae0f commit c3de80e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/e621_tagger/e621_tagger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def process_e621_post_for_item(
163163

164164
performer_ids = []
165165
for char in post_data.get("tags", {}).get("character", []):
166-
name = char.split("_(")[0]
166+
name = char
167167
perf = get_or_create_performer(stash, name)
168168
performer_ids.append(perf["id"])
169169

plugins/e621_tagger/e621_tagger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: e621_tagger
22
description: Finding images and videos on e621 and tagging them.
3-
version: 0.4
3+
version: 0.5
44
url: https://github.com/stashapp/CommunityScripts/
55
exec:
66
- python

0 commit comments

Comments
 (0)