Skip to content

Commit

Permalink
Merge branch 'main' into action-file-share-data
Browse files Browse the repository at this point in the history
  • Loading branch information
bigcat88 authored Aug 17, 2023
2 parents f0c78a7 + 57c2c16 commit 6938f96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Service/ExFilesActionsMenuService.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function handleFileAction(string $userId, string $appId, string $fileActi
'mime' => $actionFile['mime'],
'fileType' => $actionFile['fileType'],
'mtime' => $actionFile['mtime'],
'contentLength' => $actionFile['contentLength'],
'size' => $actionFile['size'],
'favorite' => $actionFile['favorite'] ?? "false",
'permissions' => $actionFile['permissions'],
'shareTypes' => $actionFile['shareTypes'] ?? null,
Expand Down
2 changes: 1 addition & 1 deletion src/filesplugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ state.fileActions.forEach(fileAction => {
favorite: file.dataset?.favorite,
permissions: file.dataset.permissions,
fileType: file.dataset.type,
contentLength: file.dataset.size,
size: file.dataset.size,
mtime: file.dataset.mtime,
shareTypes: file.dataset?.shareTypes,
shareAttributes: file.dataset.shareAttributes,
Expand Down

0 comments on commit 6938f96

Please sign in to comment.