Don't create invalid users
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
cc436de229
commit
a9e44bb57a
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue