convert expires_at option on authenticated_s3_url to integer to prevent amazon errors

This commit is contained in:
Greg Borenstein 2009-01-30 20:48:49 -08:00
Родитель 5b16d05aee
Коммит 02df072d76
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -276,6 +276,7 @@ module Technoweenie # :nodoc:
# @photo.authenticated_s3_url('thumbnail', :expires_in => 5.hours, :use_ssl => true)
def authenticated_s3_url(*args)
options = args.extract_options!
options[:expires_in] = options[:expires_in].to_i if options[:expires_in]
thumbnail = args.shift
S3Object.url_for(full_filename(thumbnail), bucket_name, options)
end