19 lines
366 B
Ruby
19 lines
366 B
Ruby
module Jobs
|
|
|
|
class ResizeEmoji < Jobs::Base
|
|
|
|
def execute(args)
|
|
path = args[:path]
|
|
return unless File.exists?(path)
|
|
|
|
opts = {
|
|
allow_animation: true,
|
|
force_aspect_ratio: SiteSetting.enforce_square_emoji
|
|
}
|
|
# make sure emoji aren't too big
|
|
OptimizedImage.downsize(path, path, "100x100", opts)
|
|
end
|
|
end
|
|
|
|
end
|