diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-01 16:51:36 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-01 16:51:36 +0100 |
commit | e28173863eadfa19c0e4ed8e7c752a8ac0a164bc (patch) | |
tree | 235bfe3dd1d0658a22219b21e221fd33b8070f80 /apps/contactsinteraction | |
parent | 92d6abf216806de0d3dca5e8842ac3532c621b31 (diff) | |
download | nextcloud-server-e28173863eadfa19c0e4ed8e7c752a8ac0a164bc.tar.gz nextcloud-server-e28173863eadfa19c0e4ed8e7c752a8ac0a164bc.zip |
Card::getOwner should return the actual value
I guess we never call this at runtime or it would already ahve done boom
very loudly.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/contactsinteraction')
-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; } /** |