summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2021-03-01 18:25:17 +0100
committerGitHub <noreply@github.com>2021-03-01 18:25:17 +0100
commit148cc83c52aae2795a10c80ee9696522b49b4329 (patch)
tree235bfe3dd1d0658a22219b21e221fd33b8070f80 /apps
parent92d6abf216806de0d3dca5e8842ac3532c621b31 (diff)
parente28173863eadfa19c0e4ed8e7c752a8ac0a164bc (diff)
downloadnextcloud-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.php2
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;
}
/**