Commit 196bd999 authored by Mark Harding's avatar Mark Harding

(chore): increase boost outlets and lower latency

parent 0d5fd361
No related merge requests found
Pipeline #72642732 pending with stages
......@@ -11,7 +11,7 @@ export class FeaturedContentService {
protected feedsService: FeedsService,
) {
this.feedsService
.setLimit(50)
.setLimit(12)
.setOffset(0)
.setEndpoint('api/v2/boost/feed')
.fetch();
......
......@@ -295,10 +295,10 @@ export class NewsfeedSortedComponent implements OnInit, OnDestroy {
}
shouldShowBoost(i: number) {
if (this.query) {
return false;
}
//if (this.query) {
// return false;
//}
return (i > 0 && (i % 8) === 0 && i <= 40) || i === 2;
return (i > 0 && (i % 5) === 0 && i <= 80) || i === 1;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment