suppress error when using is_dir on non directory in smb backend

This commit is contained in:
Robin Appelman 2012-06-17 03:09:49 +02:00
parent ed66c63c29
commit ad4f066bac
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{
}
public function filetype($path){
return (bool)$this->opendir($path);//using opendir causes the same amount of requests and caches the content of the folder in one go
return (bool)@$this->opendir($path);//using opendir causes the same amount of requests and caches the content of the folder in one go
}
/**