fix: tweaks

This commit is contained in:
2023-11-14 11:09:42 +00:00
parent c530e4ba72
commit 55ec27cf4a
3 changed files with 7 additions and 9 deletions

View File

@ -75,7 +75,7 @@ const TimelineFollows = (props: TimelineFollowsProps) => {
return (mixin.data.data ?? [])
.filter(a => !mainFeedIds.has(a.id) && postsOnly(a) && !isEventMuted(a))
.filter(a => a.tags.filter(a => a[0] === "t").length < 5)
.filter(a => a.created_at >= (oldest ?? unixNow()))
.filter(a => !oldest || a.created_at >= oldest)
.map(
a =>
({