mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-14 02:44:13 +00:00
Fix custom emoji category creation silently erroring out on duplicate category (#12647)
Instead, just re-use the existing category if any. Fixes #12608
This commit is contained in:
parent
fb9137752a
commit
c0ed53b810
|
@ -40,7 +40,7 @@ class Form::CustomEmojiBatch
|
||||||
if category_id.present?
|
if category_id.present?
|
||||||
CustomEmojiCategory.find(category_id)
|
CustomEmojiCategory.find(category_id)
|
||||||
elsif category_name.present?
|
elsif category_name.present?
|
||||||
CustomEmojiCategory.create!(name: category_name)
|
CustomEmojiCategory.find_or_create_by!(name: category_name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue