remember to broadcast in api, and also use the right ID

darcs-hash:20080730030012-84dde-9ceea12e90a4b4b4bbe35cb6cb50b6bcbb6085b7.gz
This commit is contained in:
Evan Prodromou 2008-07-29 23:00:12 -04:00
parent c21ed78fa7
commit e998cc3960
1 changed files with 3 additions and 1 deletions

View File

@ -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();