Fix feed feedback (#4730)

This commit is contained in:
dan 2024-07-04 20:07:42 +01:00 committed by GitHub
parent 4f02da96c8
commit 12bf796293
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 7 deletions

View file

@ -156,6 +156,14 @@ const interstials: Record<
],
}
export function getFeedPostSlice(feedItem: FeedItem): FeedPostSlice | null {
if (feedItem.type === 'slice') {
return feedItem.slice
} else {
return null
}
}
// DISABLED need to check if this is causing random feed refreshes -prf
// const REFRESH_AFTER = STALE.HOURS.ONE
const CHECK_LATEST_AFTER = STALE.SECONDS.THIRTY