get correct profile for friends timeline

This commit is contained in:
Evan Prodromou 2011-05-25 12:51:21 -04:00
parent b34e267e53
commit 32f47004df
1 changed files with 7 additions and 1 deletions

View File

@ -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,