Skip to content

Commit

Permalink
Merge pull request #155 from BadmanMassive/master
Browse files Browse the repository at this point in the history
Fix Incorrect Assignment in Shares_Find Function
  • Loading branch information
Raudius authored Feb 4, 2024
2 parents 75c9ad7 + c46f8ec commit eebd48c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ private function serializeShare(IShare $share, Folder $homeFolder): array {
'type' => $share->getShareType(),
'share_owner' => $share->getShareOwner(),
'shared_by' => $share->getSharedBy(),
'shared_with' => $share->getSharedBy(),
'shared_with' => $share->getSharedWith(),
'permissions' => $share->getPermissions(),
'token' => $share->getToken(),
];
Expand Down

0 comments on commit eebd48c

Please sign in to comment.