Fix the build.
This commit is contained in:
parent
c5e7c60a37
commit
f8b367cc9c
|
@ -244,15 +244,15 @@ class OptimizedImage < ActiveRecord::Base
|
|||
method_name += "_animated"
|
||||
end
|
||||
instructions = self.send(method_name.to_sym, from, to, dimensions, opts)
|
||||
convert_with(instructions, to)
|
||||
convert_with(instructions, to, opts)
|
||||
end
|
||||
|
||||
def self.convert_with(instructions, to)
|
||||
def self.convert_with(instructions, to, opts = {})
|
||||
Discourse::Utils.execute_command(*instructions)
|
||||
FileHelper.optimize_image!(to)
|
||||
true
|
||||
rescue => e
|
||||
if Rails.env.test?
|
||||
if opts[:raise_on_error]
|
||||
raise e
|
||||
else
|
||||
Rails.logger.error("Could not optimize image #{to}: #{e.message}")
|
||||
|
|
|
@ -56,7 +56,8 @@ describe OptimizedImage do
|
|||
"#{Rails.root}/spec/fixtures/images/svg.png",
|
||||
tmp_path,
|
||||
5,
|
||||
5
|
||||
5,
|
||||
raise_on_error: true
|
||||
)
|
||||
end.to raise_error(RuntimeError, /improper image header/)
|
||||
ensure
|
||||
|
|
Loading…
Reference in New Issue