Skip to content

Commit

Permalink
added missing info for actionFile
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey18106 committed Aug 16, 2023
1 parent b08ad33 commit f60f041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/Service/ExFilesActionsMenuService.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ public function handleFileAction(string $userId, string $appId, string $fileActi
'etag' => $actionFile['etag'],
'mime' => $actionFile['mime'],
'fileType' => $actionFile['fileType'],
'mtime' => $actionFile['mtime'],
'contentLength' => $actionFile['contentLength'],
'favorite' => $actionFile['favorite'] ?? "false",
'permissions' => $actionFile['permissions']
Expand Down
1 change: 1 addition & 0 deletions src/filesplugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ state.fileActions.forEach(fileAction => {
permissions: file.dataset.permissions,
fileType: file.dataset.type,
contentLength: file.dataset.size,
mtime: file.dataset.mtime,
},
}).then((response) => {
console.debug('response', response)
Expand Down

0 comments on commit f60f041

Please sign in to comment.