Merge pull request #17857 from nextcloud/backport/17847/stable16

[stable16] Also set X-OC-Mtime header for files that are smaller than 10MB
This commit is contained in:
Roeland Jago Douma 2019-11-12 08:11:36 +01:00 committed by GitHub
commit a2c2389dd4
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