FIX: picture would be hidden when [details] block was closed in the composer

This commit is contained in:
Régis Hanol
2015-03-16 18:57:15 +01:00
parent 4ff1e19712
commit 5d74cadf2f
2 changed files with 41 additions and 10 deletions

View File

@ -98,7 +98,10 @@ class CookedPostProcessor
return unless image_sizes.present?
image_sizes.each do |image_size|
url, size = image_size[0], image_size[1]
return [size["width"], size["height"]] if url && size && url.include?(src)
if url && url.include?(src) &&
size && size["width"].to_i > 0 && size["height"].to_i > 0
return [size["width"], size["height"]]
end
end
end