NoticeStream already handles "getNotices"

This commit is contained in:
Mikael Nordfeldth 2015-02-03 12:12:11 +01:00
parent 40416c2c69
commit e41d324a53
1 changed files with 0 additions and 26 deletions

View File

@ -136,30 +136,4 @@ class RawInboxNoticeStream extends NoticeStream
return $ids;
}
function getNotices($offset, $limit, $sinceId, $maxId)
{
$all = array();
do {
$ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId);
$notices = Notice::pivotGet('id', $ids);
// By default, takes out false values
$notices = array_filter($notices);
$all = array_merge($all, $notices);
if (count($notices < count($ids))) {
$offset += $limit;
$limit -= count($notices);
}
} while (count($notices) < count($ids) && count($ids) > 0);
return new ArrayWrapper($all);
}
}