Adds some Fixes for AWS Support. #658

Merged
kopertop merged 3 commits from development into development 2017-10-07 09:06:23 +00:00
Showing only changes of commit 8b36c892d5 - Show all commits

View File

@@ -314,7 +314,7 @@ export class FileUploader {
let paramVal = this.options.additionalParameter[key];
// Allow an additional parameter to include the filename
if (paramVal.indexOf('{{file_name}}') >= 0) {
paramVal.replace('{{file_name}}', item.file.name);
paramVal = paramVal.replace('{{file_name}}', item.file.name);
}
sendable.append(key, paramVal);
});