From: Evan Prodromou Date: Wed, 30 Jul 2008 03:00:12 +0000 (-0400) Subject: remember to broadcast in api, and also use the right ID X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e998cc3960fd4a0cd6df9b21500f0272d5c5eb66;p=quix0rs-gnu-social.git remember to broadcast in api, and also use the right ID darcs-hash:20080730030012-84dde-9ceea12e90a4b4b4bbe35cb6cb50b6bcbb6085b7.gz --- diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php index f791a0cc86..a1e1545f8f 100644 --- a/actions/twitapistatuses.php +++ b/actions/twitapistatuses.php @@ -408,6 +408,8 @@ class TwitapistatusesAction extends TwitterapiAction { $this->server_error($notice); return; } + + common_broadcast_notice($notice); // FIXME: Bad Hack // I should be able to just sent this notice off for display, @@ -415,7 +417,7 @@ class TwitapistatusesAction extends TwitterapiAction { // point and I don't know how to convert it to one here. So // I'm forced to have DBObject pull the notice back out of the // DB before printing. --Zach - $apidata['api_arg'] = $id; + $apidata['api_arg'] = $notice->id; $this->show($args, $apidata); exit();