Commit e9536fab authored by lucas.parsy's avatar lucas.parsy Committed by Romain Courteaud

added comment in dropboxstorage.js about current size limitation

of putattachment method (150MB limit)
parent 540b3609
......@@ -169,6 +169,10 @@
});
};
//currently, putattachment will fail with files larger than 150MB,
//due to the Dropbox API. the API provides the "chunked_upload" method
//to pass this limit, but upload process becomes more complex to implement.
DropboxStorage.prototype.putAttachment = function (id, name, blob) {
var that = this;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment