data_export/user: remove rescue since local image handling works now for sure
This commit is contained in:
parent
312fadff2a
commit
9895782a02
|
@ -68,12 +68,7 @@ module UseCase
|
||||||
picture.versions.each do |version, file|
|
picture.versions.each do |version, file|
|
||||||
export_filename = "pictures/#{file.mounted_as}_#{version}_#{file.filename}"
|
export_filename = "pictures/#{file.mounted_as}_#{version}_#{file.filename}"
|
||||||
to[export_filename] = if file.url.start_with?("/")
|
to[export_filename] = if file.url.start_with?("/")
|
||||||
begin
|
Rails.public_path.join(file.url.sub(%r{\A/+}, "")).read
|
||||||
Rails.public_path.join(file.url.sub(%r{\A/+}, "")).read
|
|
||||||
rescue
|
|
||||||
# TODO: fix image handling in local development environments!!! see #822
|
|
||||||
"ceci n'est pas un image\n"
|
|
||||||
end
|
|
||||||
else
|
else
|
||||||
HTTParty.get(file.url).parsed_response
|
HTTParty.get(file.url).parsed_response
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue