Merge pull request #19453 from nextcloud/backport/19424/stable16

[stable16] Don't create invalid users
This commit is contained in:
Roeland Jago Douma 2020-02-13 20:30:58 +01:00 committed by GitHub
commit 16025e3af0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1390,7 +1390,7 @@ class View {
}
$ownerId = $storage->getOwner($internalPath);
$owner = null;
if ($ownerId !== null) {
if ($ownerId !== null && $ownerId !== false) {
// ownerId might be null if files are accessed with an access token without file system access
$owner = $this->getUserObjectForOwner($ownerId);
}