mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
fix the build
This commit is contained in:
parent
407f3abffb
commit
2c7b47fc40
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,6 @@ class OptimizedImage < ActiveRecord::Base
|
||||||
FileUtils.cp(original_path, temp_path)
|
FileUtils.cp(original_path, temp_path)
|
||||||
resized = true
|
resized = true
|
||||||
else
|
else
|
||||||
original_path << "[0]" unless opts[:allow_animation]
|
|
||||||
resized = resize(original_path, temp_path, width, height)
|
resized = resize(original_path, temp_path, width, height)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -80,6 +79,7 @@ class OptimizedImage < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.resize(from, to, width, height)
|
def self.resize(from, to, width, height)
|
||||||
|
from << "[0]" unless opts[:allow_animation]
|
||||||
# NOTE: ORDER is important!
|
# NOTE: ORDER is important!
|
||||||
instructions = %W{
|
instructions = %W{
|
||||||
#{from}
|
#{from}
|
||||||
|
|
Loading…
Reference in a new issue