Fix error when using relative_assets and automatic_image_sizes. Thanks @zlz. Closes #35

This commit is contained in:
Thomas Reynolds 2011-04-20 13:41:38 -07:00
parent f237cf014a
commit f5a009fe44
2 changed files with 3 additions and 5 deletions

View file

@ -23,11 +23,9 @@ module Middleman::Features::AutomaticImageSizes
end
rescue
end
super(asset_url(path, http_prefix), params)
else
super(path, params)
end
super(path, params)
end
end
end

View file

@ -1,3 +1,3 @@
module Middleman
VERSION = "1.1.4"
VERSION = "1.1.5"
end