Fixed trashbin to use correct class

It seems that \OC_Filesystemview has been removed.
Now using the correct class \OC\Files\View()
This commit is contained in:
Vincent Petry 2014-05-15 15:21:27 +02:00
parent 60efa0f1c8
commit 818c77684d
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class Helper
$timestamp = null;
$user = \OCP\User::getUser();
$view = new \OC_Filesystemview('/' . $user . '/files_trashbin/files');
$view = new \OC\Files\View('/' . $user . '/files_trashbin/files');
if (ltrim($dir, '/') !== '' && !$view->is_dir($dir)) {
throw new \Exception('Directory does not exists');