mirror of https://github.com/tootsuite/mastodon
Fix audit log error when custom emoji is copied from remote server (#11876)
parent
75c6ad500d
commit
3919571c39
|
@ -63,7 +63,7 @@ class CustomEmoji < ApplicationRecord
|
||||||
def copy!
|
def copy!
|
||||||
copy = self.class.find_or_initialize_by(domain: nil, shortcode: shortcode)
|
copy = self.class.find_or_initialize_by(domain: nil, shortcode: shortcode)
|
||||||
copy.image = image
|
copy.image = image
|
||||||
copy.save!
|
copy.tap(&:save!)
|
||||||
end
|
end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
|
|
Loading…
Reference in New Issue