1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 07:06:34 +09:00

Fix audit log error when custom emoji is copied from remote server (#11876)

This commit is contained in:
han@highemelry 2019-09-18 06:20:48 +09:00 committed by Eugen Rochko
parent 75c6ad500d
commit 3919571c39

View File

@ -63,7 +63,7 @@ class CustomEmoji < ApplicationRecord
def copy!
copy = self.class.find_or_initialize_by(domain: nil, shortcode: shortcode)
copy.image = image
copy.save!
copy.tap(&:save!)
end
class << self