Start adding language support

This commit is contained in:
Pablo Revilla
2025-10-15 15:31:04 -07:00
parent bcd007e5e2
commit ea10a656e7

View File

@@ -201,7 +201,7 @@ loadTranslations().then(async () => {
async function fetchAdditionalChannels() {
try {
const res = await fetch('/api/channels?period_type=day&length=30');
const res = await fetch('/api/channels?period_type=day&length=3');
if (!res.ok) return [];
const data = await res.json();
if (!data || !Array.isArray(data.channels)) return [];