give error when tags dont actually get changed

master
Aevann 2024-11-15 16:56:38 +02:00
parent a7a259381d
commit eecae3850d
1 changed files with 5 additions and 3 deletions

View File

@ -602,8 +602,10 @@ def update_emoji(v):
if tags and existing.tags != tags:
if not tags_regex.fullmatch(tags):
stop(400, "Invalid tags!")
existing.tags += f" {tags}"
existing.tags = delete_unnecessary_tags(existing.tags, existing.name)
new_tags = f"{existing.tags} {tags}"
new_tags = delete_unnecessary_tags(new_tags, existing.name)
if new_tags != existing.tags:
existing.tags = new_tags
updated = True
if nsfw: