Browse Source

Fix regression #5467: fixes emoji copy (#5739)

pull/4/head
Clworld 6 years ago
committed by Eugen Rochko
parent
commit
e1ebf36352
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      app/controllers/admin/custom_emojis_controller.rb

+ 3
- 2
app/controllers/admin/custom_emojis_controller.rb View File

@ -45,9 +45,10 @@ module Admin
def copy
authorize @custom_emoji, :copy?
emoji = CustomEmoji.find_or_create_by(domain: nil, shortcode: @custom_emoji.shortcode)
emoji = CustomEmoji.find_or_initialize_by(domain: nil, shortcode: @custom_emoji.shortcode)
emoji.image = @custom_emoji.image
if emoji.updatespan>(image: @custom_emoji.image)
if emoji.save
flash[:notice] = I18n.t('admin.custom_emojis.copied_msg')
else
flash[:alert] = I18n.t('admin.custom_emojis.copy_failed_msg')

Loading…
Cancel
Save