suppress fopen errors from dav

This commit is contained in:
zotlabs 2017-07-23 19:54:32 -07:00
parent 992f8272d3
commit 5ed4ed2246

View File

@ -265,7 +265,7 @@ class File extends DAV\Node implements DAV\IFile {
$f = 'store/' . $this->auth->owner_nick . '/' . (($this->os_path) ? $this->os_path . '/' : '') . $x;
else
$f = $x;
return fopen($f, 'rb');
return @fopen($f, 'rb');
}
return dbunescbin($r[0]['content']);
}