Prefill done by notice stream
This commit is contained in:
parent
dcbcd4731c
commit
0238aa9d19
@ -84,10 +84,7 @@ abstract class FilteringNoticeStream extends NoticeStream
|
||||
|
||||
$notices = $raw->fetchAll();
|
||||
|
||||
// XXX: this should probably only be in the scoping one.
|
||||
|
||||
Notice::fillGroups($notices);
|
||||
Notice::fillReplies($notices);
|
||||
$this->prefill($notices);
|
||||
|
||||
foreach ($notices as $notice) {
|
||||
if ($this->filter($notice)) {
|
||||
@ -127,4 +124,9 @@ abstract class FilteringNoticeStream extends NoticeStream
|
||||
|
||||
return $ids;
|
||||
}
|
||||
|
||||
function prefill($notices)
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -73,4 +73,12 @@ class ScopingNoticeStream extends FilteringNoticeStream
|
||||
{
|
||||
return $notice->inScope($this->profile);
|
||||
}
|
||||
|
||||
function prefill($notices)
|
||||
{
|
||||
// XXX: this should probably only be in the scoping one.
|
||||
|
||||
Notice::fillGroups($notices);
|
||||
Notice::fillReplies($notices);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user