You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-18 23:07:45 +02:00
@ -145,10 +145,11 @@ class FileApiDriverAmazonS3 {
|
||||
|
||||
metadataToStat_(md, path) {
|
||||
const relativePath = basename(path);
|
||||
const lastModifiedDate = md['LastModified'] ? new Date(md['LastModified']) : new Date();
|
||||
|
||||
const output = {
|
||||
path: relativePath,
|
||||
updated_time: md['LastModified'] ? new Date(md['LastModified']) : new Date(),
|
||||
updated_time: lastModifiedDate.getTime(),
|
||||
isDeleted: !!md['DeleteMarker'],
|
||||
isDir: false,
|
||||
};
|
||||
|
Reference in New Issue
Block a user