Fixed that artists and characters are not added to tags when they are left blank

pull/3/head
z4m1 2024-03-19 03:28:39 +09:00
parent ae61babb31
commit 0ed00d4f74
1 changed files with 2 additions and 2 deletions

View File

@ -25,9 +25,9 @@ def fetchTags(ch, art_box, char_box):
format_tags = ""
if art_box:
if art_box and artist:
format_tags += artist
if char_box:
if char_box and char:
if not art_box:
format_tags += char
else: