From: Evan Prodromou Date: Wed, 25 May 2011 16:51:21 +0000 (-0400) Subject: get correct profile for friends timeline X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=32f47004df3bc795a3cbdc380ceaaf9159436a36;p=quix0rs-gnu-social.git get correct profile for friends timeline --- diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 279265a30e..33248203bc 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -289,7 +289,13 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction { $notices = array(); - $stream = new InboxNoticeStream($this->user); + $profile = null; + + if (isset($this->auth_user)) { + $profile = $this->auth_user->getProfile(); + } + + $stream = new InboxNoticeStream($this->user, $profile); $notice = $stream->getNotices(($this->page-1) * $this->count, $this->count,