]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/apifavoritedestroy.php
Merge remote-tracking branch 'statusnet/master'
[quix0rs-gnu-social.git] / actions / apifavoritedestroy.php
index f86c985dc0ff1c81f5053e96620ec59525603ed4..59ca5c96df621c6910a930ed475919f01edc7559 100644 (file)
@@ -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;
     }
@@ -94,7 +100,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