Merge pull request #20761 from nextcloud/fix/owner_public

Fix owner on publicownerwrapper
This commit is contained in:
Roeland Jago Douma 2020-05-01 12:32:14 +02:00 committed by GitHub
commit 055fa998cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -49,5 +49,7 @@ class PublicOwnerWrapper extends Wrapper {
if ($owner === null || $owner === false) {
return $this->owner;
}
return $owner;
}
}