diff options
-rw-r--r-- | lib/private/files/view.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 7e8589e4433..7609dbe536c 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1290,7 +1290,7 @@ class View { $this->getAbsolutePath($path), $storage, $internalPath, - [ + array( 'fileid' => null, 'mimetype' => $storage->getMimeType($internalPath), 'name' => basename($path), @@ -1299,7 +1299,7 @@ class View { 'mtime' => $storage->filemtime($internalPath), 'encrypted' => false, 'permissions' => \OCP\PERMISSION_ALL - ], + ), $mount ); } |