Merge pull request #17858 from nextcloud/backport/17847/stable17
[stable17] Also set X-OC-Mtime header for files that are smaller than 10MB
This commit is contained in:
commit
351b76f97e
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue