From: Mikael Nordfeldth Date: Thu, 6 Mar 2014 10:47:27 +0000 (+0100) Subject: Use CachingNoticeStream for "All" feed (hope it works) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=36a55d84363e69bf08da38e524f7d33063c2743a;p=quix0rs-gnu-social.git Use CachingNoticeStream for "All" feed (hope it works) --- diff --git a/lib/inboxnoticestream.php b/lib/inboxnoticestream.php index a8633314d5..cb81042e2b 100644 --- a/lib/inboxnoticestream.php +++ b/lib/inboxnoticestream.php @@ -58,7 +58,7 @@ class InboxNoticeStream extends ScopingNoticeStream $scoped = Profile::current(); } // FIXME: we don't use CachingNoticeStream - but maybe we should? - parent::__construct(new RawInboxNoticeStream($target), $scoped); + parent::__construct(new CachingNoticeStream(new RawInboxNoticeStream($target), 'profileall'), $scoped); } }