Also set X-OC-Mtime header for files that are smaller than 10MB (#17847)

Also set X-OC-Mtime header for files that are smaller than 10MB
This commit is contained in:
John Molakvoæ 2019-11-08 08:42:35 +01:00 committed by GitHub
commit 4813c87609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -242,6 +242,10 @@ OC.FileUpload.prototype = {
// TODO: if fails, it means same id already existed, need to retry
} else {
chunkFolderPromise = $.Deferred().resolve().promise();
var mtime = this.getFile().lastModified;
if (mtime) {
data.headers['X-OC-Mtime'] = mtime / 1000;
}
}
// wait for creation of the required directory before uploading