Increase default featured apps limit (3 -> 5)

This commit is contained in:
foxster-mp4
2023-05-28 11:36:55 -07:00
parent 31dc5448bb
commit 77c07340ca

View File

@@ -30,8 +30,8 @@ function main(json) {
// Featured apps
let count = 1;
json.apps.forEach(app => {
// Max: 3 featured apps if not specified
if (count > 3) return;
// Max: 5 featured apps if not specified
if (count > 5) return;
// Ignore beta apps
if (app.beta) return;