Skip to content

Commit

Permalink
Fix #36340
Browse files Browse the repository at this point in the history
Signed-off-by: Michiel de Jong <[email protected]>
  • Loading branch information
michielbdejong committed Jan 7, 2025
1 parent bbba8b4 commit 44982b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty
Submodule 3rdparty updated 7555 files
4 changes: 4 additions & 0 deletions lib/private/Federation/CloudFederationShare.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class CloudFederationShare implements ICloudFederationShare {
'ownerDisplayName' => '',
'sharedBy' => '',
'sharedByDisplayName' => '',
'sender' => '',
'senderDisplayName' => '',
'protocol' => []
];

Expand Down Expand Up @@ -155,6 +157,7 @@ public function setOwnerDisplayName($ownerDisplayName) {
*/
public function setSharedBy($sharedBy) {
$this->share['sharedBy'] = $sharedBy;
$this->share['sender'] = $sharedBy;
}

/**
Expand All @@ -166,6 +169,7 @@ public function setSharedBy($sharedBy) {
*/
public function setSharedByDisplayName($sharedByDisplayName) {
$this->share['sharedByDisplayName'] = $sharedByDisplayName;
$this->share['senderDisplayName'] = $sharedByDisplayName;
}

/**
Expand Down

0 comments on commit 44982b9

Please sign in to comment.