X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapifavoritedestroy.php;h=59ca5c96df621c6910a930ed475919f01edc7559;hb=f79aec36feaa4760201a7e88d5b31513a3c458ba;hp=db121ac882a21dadabd6cff34eadf10e2f1212a2;hpb=84a2fb44b9f6f2b60124b651bb1d72496e81b5f0;p=quix0rs-gnu-social.git diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php index db121ac882..59ca5c96df 100644 --- a/actions/apifavoritedestroy.php +++ b/actions/apifavoritedestroy.php @@ -65,6 +65,12 @@ class ApiFavoriteDestroyAction extends ApiAuthAction $this->user = $this->auth_user; $this->notice = Notice::staticGet($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::staticGet($real_notice_id); + } return true; }