diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-01 18:25:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 18:25:17 +0100 |
commit | 148cc83c52aae2795a10c80ee9696522b49b4329 (patch) | |
tree | 235bfe3dd1d0658a22219b21e221fd33b8070f80 /apps | |
parent | 92d6abf216806de0d3dca5e8842ac3532c621b31 (diff) | |
parent | e28173863eadfa19c0e4ed8e7c752a8ac0a164bc (diff) | |
download | nextcloud-server-148cc83c52aae2795a10c80ee9696522b49b4329.tar.gz nextcloud-server-148cc83c52aae2795a10c80ee9696522b49b4329.zip |
Merge pull request #25856 from nextcloud/techdept/pslam/card_getOwner
Card::getOwner should return the actual value
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contactsinteraction/lib/Card.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contactsinteraction/lib/Card.php b/apps/contactsinteraction/lib/Card.php index 2cacd7ad546..4134924c2c3 100644 --- a/apps/contactsinteraction/lib/Card.php +++ b/apps/contactsinteraction/lib/Card.php @@ -53,7 +53,7 @@ class Card implements ICard, IACL { * @inheritDoc */ public function getOwner(): ?string { - $this->principal; + return $this->principal; } /** |