diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-06-24 10:10:10 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-06-24 10:17:12 +0200 |
commit | 56ad4cdfec41f5b3dbbca357b4730f7db1700b1e (patch) | |
tree | 0184899ebedba5de9f6a87ef974893a60725a169 /apps/dav/lib/Comments/CommentNode.php | |
parent | 29068d3845065c3ca873513f3be6d27d886c9874 (diff) | |
download | nextcloud-server-56ad4cdfec41f5b3dbbca357b4730f7db1700b1e.tar.gz nextcloud-server-56ad4cdfec41f5b3dbbca357b4730f7db1700b1e.zip |
Show error message when posting an invalid comment
When an internal server error occurs while creating or updating a
comment, display a proper error notification in the UI.
Diffstat (limited to 'apps/dav/lib/Comments/CommentNode.php')
-rw-r--r-- | apps/dav/lib/Comments/CommentNode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Comments/CommentNode.php b/apps/dav/lib/Comments/CommentNode.php index edf46d210fc..5c22f8a8a71 100644 --- a/apps/dav/lib/Comments/CommentNode.php +++ b/apps/dav/lib/Comments/CommentNode.php @@ -185,7 +185,7 @@ class CommentNode implements \Sabre\DAV\INode, \Sabre\DAV\IProperties { $msg = 'Message exceeds allowed character limit of '; throw new BadRequest($msg . IComment::MAX_MESSAGE_LENGTH, 0, $e); } - return false; + throw $e; } } |