From e28173863eadfa19c0e4ed8e7c752a8ac0a164bc Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 1 Mar 2021 16:51:36 +0100 Subject: [PATCH] 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 --- apps/contactsinteraction/lib/Card.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/contactsinteraction/lib/Card.php b/apps/contactsinteraction/lib/Card.php index 2cacd7ad54..4134924c2c 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; } /**