Fix Drive mtime and btime (#299)
* Update drive.py fix timestamp about api.drive.upload() * Update pyicloud/services/drive.py Co-authored-by: Quentame <polletquentin74@me.com>
This commit is contained in:
parent
4075c41ecc
commit
29bb3678c1
1 changed files with 2 additions and 2 deletions
|
@ -113,8 +113,8 @@ class DriveService(object):
|
||||||
"is_executable": False,
|
"is_executable": False,
|
||||||
"is_hidden": False,
|
"is_hidden": False,
|
||||||
},
|
},
|
||||||
"mtime": int(time.time()),
|
"mtime": int(time.time() * 1000),
|
||||||
"btime": int(time.time()),
|
"btime": int(time.time() * 1000),
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add the receipt if we have one. Will be absent for 0-sized files
|
# Add the receipt if we have one. Will be absent for 0-sized files
|
||||||
|
|
Loading…
Reference in a new issue