Fix Archive.new call?

This commit is contained in:
Joel McCoy
2015-04-16 17:37:32 -04:00
parent 8e61480394
commit 51e6012ca1

View File

@@ -16,7 +16,7 @@ module Ebooks::Boodoo
def self.make_Model(username: nil, path: nil, ignore_cloud: false)
# return CloudModel unless Cloudinary is missing or instructed not to.
if !ignore_cloud && has_cloud?
CloudModel.new(username, path)
CloudModel.new(username, path: path)
else
Model.new
end