From: Eugen Rochko Date: Tue, 10 Oct 2017 13:18:27 +0000 (+0200) Subject: Fix custom emoji copy not copying file (#5298) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=61d3ecc8055cc9e72826e92638caa5f667023683;p=mastodon.git Fix custom emoji copy not copying file (#5298) --- diff --git a/app/controllers/admin/custom_emojis_controller.rb b/app/controllers/admin/custom_emojis_controller.rb index dba9f1012..ca81f3255 100644 --- a/app/controllers/admin/custom_emojis_controller.rb +++ b/app/controllers/admin/custom_emojis_controller.rb @@ -28,8 +28,7 @@ module Admin end def copy - emoji = @custom_emoji.dup - emoji.domain = nil + emoji = CustomEmoji.new(domain: nil, shortcode: @custom_emoji.shortcode, image: @custom_emoji.image) if emoji.save redirect_to admin_custom_emojis_path, notice: I18n.t('admin.custom_emojis.copied_msg')