From: Hannes Mannerheim Date: Mon, 20 Oct 2014 14:10:11 +0000 (+0200) Subject: isSubscribed and hasBlocked need instance of Profile, not User X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=852924799f6779195ca457296d94e982d41672fa;p=quix0rs-gnu-social.git isSubscribed and hasBlocked need instance of Profile, not User used by actions/apifriendshipsshow.php --- diff --git a/lib/apiaction.php b/lib/apiaction.php old mode 100644 new mode 100755 index b55647e445..4b4c94aed9 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -580,13 +580,16 @@ class ApiAction extends Action { $details = array(); + $source_profile = $source->getProfile(); + $target_profile = $target->getProfile(); + $details['screen_name'] = $source->nickname; - $details['followed_by'] = $target->isSubscribed($source); - $details['following'] = $source->isSubscribed($target); + $details['followed_by'] = $target->isSubscribed($source_profile); + $details['following'] = $source->isSubscribed($target_profile); $notifications = false; - if ($source->isSubscribed($target)) { + if ($source->isSubscribed($target_profile)) { $sub = Subscription::pkeyGet(array('subscriber' => $source->id, 'subscribed' => $target->id)); @@ -596,7 +599,7 @@ class ApiAction extends Action } $details['notifications_enabled'] = $notifications; - $details['blocking'] = $source->hasBlocked($target); + $details['blocking'] = $source->hasBlocked($target_profile); $details['id'] = intval($source->id); return $details;