mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-01 09:39:51 -04:00
BUGFIX: explicit code is often better...
This commit is contained in:
parent
609d1e05cd
commit
3d94c671db
1 changed files with 6 additions and 1 deletions
|
@ -83,7 +83,12 @@ class OptimizedImage < ActiveRecord::Base
|
|||
|
||||
`convert #{instructions}`
|
||||
|
||||
ImageOptim.new.optimize_image(to) rescue nil if $?.exitstatus == 0
|
||||
if $?.exitstatus == 0
|
||||
ImageOptim.new.optimize_image(to) rescue nil
|
||||
true
|
||||
else
|
||||
false
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue