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);
}
\OCP\JSON::success();
exit();
} catch (\Exception $e){
Helper::warnLog('Saving failed. Reason:' . $e->getMessage());
\OCP\JSON::error(array('message'=>$e->getMessage()));
exit();
//\OCP\JSON::error(array('message'=>$e->getMessage()));
\OC_Response::setStatus(500);
}
exit();
}
public static function info(){