Ruby 1.9.3 compatibility fix

This commit is contained in:
Michael Gall
2012-04-05 12:25:43 +10:00
parent 13f60a6a1f
commit 8367745433

View File

@@ -8,11 +8,11 @@ module Spree
if link.present? and link.digital.attachment.present?
attachment = link.digital.attachment
if link.authorize! and File.file?(attachment.path)
send_file attachment.path :filename => attachment.original_filename, :type => attachment.content_type and return
send_file attachment.path, :filename => attachment.original_filename, :type => attachment.content_type and return
end
end
render :unauthorized
end
end
end
end