fix stuff + add stuff

This commit is contained in:
ashley 2025-10-01 18:14:10 +02:00
parent 894d14d8f4
commit 01b170b36e

View File

@ -205,7 +205,7 @@ class InnerTubePokeVidious {
const hour = new Date().getHours();
// pattern for each 2-hour block (6 blocks to cover 12 hours; repeats every 12 hours)
const pattern = ["normal", "normal", "fallback", "normal", "normal", "normal"];
const pattern = ["normal", "fallback", "fallback", "normal", "normal", "normal"];
// determine which 2-hour slot we're in (0..11 hours cover repeating pattern every 12 hours)
const twoHourIndex = Math.floor(hour / 2) % pattern.length;