fix rubocop

pull/604/merge
Pete Matsyburka 4 weeks ago
parent 90fef58684
commit 29d3a80d3f

@ -312,7 +312,8 @@ module Submissions
begin begin
attachments_data_cache[attachment.uuid] ||= attachment.download attachments_data_cache[attachment.uuid] ||= attachment.download
ImageUtils.load_vips(attachments_data_cache[attachment.uuid], content_type: attachment.content_type).autorot ImageUtils.load_vips(attachments_data_cache[attachment.uuid],
content_type: attachment.content_type).autorot
rescue Vips::Error rescue Vips::Error
next unless attachment.content_type.starts_with?('image/') next unless attachment.content_type.starts_with?('image/')
next if attachment.byte_size.zero? next if attachment.byte_size.zero?
@ -452,7 +453,8 @@ module Submissions
begin begin
attachments_data_cache[attachment.uuid] ||= attachment.download attachments_data_cache[attachment.uuid] ||= attachment.download
ImageUtils.load_vips(attachments_data_cache[attachment.uuid], content_type: attachment.content_type).autorot ImageUtils.load_vips(attachments_data_cache[attachment.uuid],
content_type: attachment.content_type).autorot
rescue Vips::Error rescue Vips::Error
next unless attachment.content_type.starts_with?('image/') next unless attachment.content_type.starts_with?('image/')
next if attachment.byte_size.zero? next if attachment.byte_size.zero?

Loading…
Cancel
Save