We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d497e04 commit 17d6dc0Copy full SHA for 17d6dc0
src/contents.ts
@@ -614,9 +614,9 @@ export class Drive implements Contents.IDrive {
614
data = {
615
name: currentPath,
616
path: PathExt.join(currentDrive.name, currentPath),
617
- last_modified: result.response.last_modified,
618
- created: result.response.last_modified,
619
- content: result.response.content,
+ last_modified: result.response.data.last_modified as string,
+ created: result.response.data.last_modified as string,
+ content: result.response.data.content,
620
format: result.format,
621
mimetype: result.mimetype,
622
size: result.response.data.size,
0 commit comments