From e10d023d037ac9d2a628f8246dfccb4ad525ed59 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 18 Mar 2010 15:26:13 -0700 Subject: [PATCH] API - handle any exceptions thrown during notice save. The API was occasionally spitting out HTML, which is hard for clients to deal with. --- actions/apistatusesupdate.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index bf367e1e18..1956c85863 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -244,11 +244,17 @@ class ApiStatusesUpdateAction extends ApiAuthAction $options = array_merge($options, $locOptions); } - $this->notice = - Notice::saveNew($this->auth_user->id, - $content, - $this->source, - $options); + try { + $this->notice = Notice::saveNew( + $this->auth_user->id, + $content, + $this->source, + $options + ); + } catch (Exception $e) { + $this->clientError($e->getMessage()); + return; + } if (isset($upload)) { $upload->attachToNotice($this->notice);