From 36a55d84363e69bf08da38e524f7d33063c2743a Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Thu, 6 Mar 2014 11:47:27 +0100 Subject: [PATCH] Use CachingNoticeStream for "All" feed (hope it works) --- lib/inboxnoticestream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }