Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2021-03-01 18:51:36 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-03-01 20:33:17 +0300
commit6baad318157df724534c20ffd7fec99f15b31aae (patch)
tree0f253243246b91d26680c0a1601c83a8bbc4ace7 /apps/contactsinteraction
parent2ed2cf9571c8e060d5de50305de0d36266781081 (diff)
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.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;
}
/**