Status 500 on unsucessful save attempt. Ref #227

This commit is contained in:
Victor Dubiniuk 2014-03-28 20:25:37 +03:00
parent 0afad5ec3f
commit 74b117bccb

View File

@ -152,12 +152,12 @@ class SessionController extends Controller{
$view->touch($path); $view->touch($path);
} }
\OCP\JSON::success(); \OCP\JSON::success();
exit();
} catch (\Exception $e){ } catch (\Exception $e){
Helper::warnLog('Saving failed. Reason:' . $e->getMessage()); Helper::warnLog('Saving failed. Reason:' . $e->getMessage());
\OCP\JSON::error(array('message'=>$e->getMessage())); //\OCP\JSON::error(array('message'=>$e->getMessage()));
exit(); \OC_Response::setStatus(500);
} }
exit();
} }
public static function info(){ public static function info(){