]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix for #3649 issue.
authorJean Baptiste Favre <statusnet@jbfavre.org>
Sat, 25 Aug 2012 11:41:09 +0000 (13:41 +0200)
committerJean Baptiste Favre <statusnet@jbfavre.org>
Sat, 15 Jun 2013 15:01:10 +0000 (17:01 +0200)
actions/apifavoritecreate.php
actions/apifavoritedestroy.php

index b890d4af6974be37597af01b7015341cf82edf71..3f639159cc9edcfb70b3d963e7e92597692a0c0e 100644 (file)
@@ -65,6 +65,12 @@ class ApiFavoriteCreateAction 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 Fave '.$this->notice->id.', repeat of '.$this->notice->repeat_of);
+                common_log(LOG_DEBUG, 'Will Fave '.$this->notice->repeat_of.' instead');
+                $real_notice_id = $this->notice->repeat_of;
+                $this->notice = Notice::staticGet($real_notice_id);
+        }
 
         return true;
     }
index db121ac882a21dadabd6cff34eadf10e2f1212a2..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;
     }