X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fapifavoritedestroy.php;h=02f81cf4dfe25f9ea0b315d5bd2a929afc9ae44a;hb=a7a4eeef09ee8929bb9ca563eb2bc52d198d202f;hp=f86c985dc0ff1c81f5053e96620ec59525603ed4;hpb=b26eccf33cf69c04a96d5d6d3eddc0ef68ffd4b1;p=quix0rs-gnu-social.git diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php index f86c985dc0..02f81cf4df 100644 --- a/actions/apifavoritedestroy.php +++ b/actions/apifavoritedestroy.php @@ -34,8 +34,6 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/apiauth.php'; - /** * Un-favorites the status specified in the ID parameter as the authenticating user. * Returns the un-favorited status in the requested format when successful. @@ -64,7 +62,13 @@ class ApiFavoriteDestroyAction extends ApiAuthAction parent::prepare($args); $this->user = $this->auth_user; - $this->notice = Notice::staticGet($this->arg('id')); + $this->notice = Notice::getKV($this->arg('id')); + if ($this->notice->repeat_of != '' ) { + common_log(LOG_DEBUG, 'Trying to unFave '.$this->notice->id); + common_log(LOG_DEBUG, 'Will unFave '.$this->notice->repeat_of.' instead'); + $real_notice_id = $this->notice->repeat_of; + $this->notice = Notice::getKV($real_notice_id); + } return true; } @@ -94,7 +98,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format