Don't create invalid users
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
c003a740cb
commit
47b292b214
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue