forked from GNUsocial/gnu-social
Use the current logged-in use for home timeline
This commit is contained in:
parent
961607bc5d
commit
ae84e8f524
@ -192,7 +192,13 @@ class ApiTimelineHomeAction 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,
|
||||
|
Loading…
Reference in New Issue
Block a user