forked from GNUsocial/gnu-social
Prefill done by notice stream
This commit is contained in:
parent
dcbcd4731c
commit
0238aa9d19
@ -82,14 +82,11 @@ abstract class FilteringNoticeStream extends NoticeStream
|
||||
break;
|
||||
}
|
||||
|
||||
$notices = $raw->fetchAll();
|
||||
|
||||
// XXX: this should probably only be in the scoping one.
|
||||
|
||||
Notice::fillGroups($notices);
|
||||
Notice::fillReplies($notices);
|
||||
|
||||
foreach ($notices as $notice) {
|
||||
$notices = $raw->fetchAll();
|
||||
|
||||
$this->prefill($notices);
|
||||
|
||||
foreach ($notices as $notice) {
|
||||
if ($this->filter($notice)) {
|
||||
$filtered[] = $notice;
|
||||
if (count($filtered) >= $total) {
|
||||
@ -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