From: Evan Prodromou Date: Tue, 3 Jul 2012 16:22:59 +0000 (-0400) Subject: Use the current logged-in use for home timeline X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ae84e8f5245256867fd7f5538b39fee8bb8fb970;p=quix0rs-gnu-social.git Use the current logged-in use for home timeline --- diff --git a/actions/apitimelinehome.php b/actions/apitimelinehome.php index 56f0e66d04..22c6cc5f94 100644 --- a/actions/apitimelinehome.php +++ b/actions/apitimelinehome.php @@ -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,