Increase timeline threshold ()

* increase threshold

* branch name

* fix

* rm build cfg
This commit is contained in:
Daniel Holmgren 2023-09-11 18:49:00 -05:00 committed by GitHub
parent 841e906101
commit d4ebba874e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -60,7 +60,7 @@ export const getTimelineSkeleton = async (
.innerJoin('follow', 'follow.subjectDid', 'feed_item.originatorDid')
.where('follow.creator', '=', viewer)
.innerJoin('post', 'post.uri', 'feed_item.postUri')
.where('feed_item.sortAt', '>', getFeedDateThreshold(sortFrom, 1))
.where('feed_item.sortAt', '>', getFeedDateThreshold(sortFrom, 2))
.selectAll('feed_item')
.select([
'post.replyRoot',
@ -79,7 +79,7 @@ export const getTimelineSkeleton = async (
.selectFrom('feed_item')
.innerJoin('post', 'post.uri', 'feed_item.postUri')
.where('feed_item.originatorDid', '=', viewer)
.where('feed_item.sortAt', '>', getFeedDateThreshold(sortFrom, 1))
.where('feed_item.sortAt', '>', getFeedDateThreshold(sortFrom, 2))
.selectAll('feed_item')
.select([
'post.replyRoot',