return 404 instead of 403 when attempting to create a comment on an not existing or unavailable file

This commit is contained in:
Arthur Schiwon 2016-01-26 12:47:33 +01:00
parent 2027bf2686
commit 49c8f3d6e4
1 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@ use OCP\Comments\ICommentsManager;
use OCP\Files\Folder; use OCP\Files\Folder;
use OCP\ILogger; use OCP\ILogger;
use OCP\IUserManager; use OCP\IUserManager;
use Sabre\DAV\Exception\Forbidden;
use Sabre\DAV\Exception\MethodNotAllowed; use Sabre\DAV\Exception\MethodNotAllowed;
use Sabre\DAV\Exception\NotFound;
/** /**
* Class EntityTypeCollection * Class EntityTypeCollection
@ -79,11 +79,11 @@ class EntityTypeCollection extends RootCollection {
* *
* @param string $name * @param string $name
* @return \Sabre\DAV\INode * @return \Sabre\DAV\INode
* @throws Forbidden * @throws NotFound
*/ */
function getChild($name) { function getChild($name) {
if(!$this->childExists($name)) { if(!$this->childExists($name)) {
throw new Forbidden('Entity does not exist or is not available'); throw new NotFound('Entity does not exist or is not available');
} }
return new EntityCollection( return new EntityCollection(
$name, $name,