Also set X-OC-Mtime header for files that are smaller than 10MB
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
c3dc9b7e84
commit
26aa01e161
|
@ -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 New Issue