Start adding language support

This commit is contained in:
Pablo Revilla
2025-10-15 15:57:39 -07:00
parent ea10a656e7
commit 636ab3e976
+1 -1
View File
@@ -201,7 +201,7 @@ loadTranslations().then(async () => {
async function fetchAdditionalChannels() {
try {
const res = await fetch('/api/channels?period_type=day&length=3');
const res = await fetch('/api/channels?period_type=day&length=30');
if (!res.ok) return [];
const data = await res.json();
if (!data || !Array.isArray(data.channels)) return [];