Don't show league divisions as streams

This commit is contained in:
Kalle 2026-03-19 19:21:16 +02:00
parent 6d8ae89d73
commit d5a81014a9

View File

@ -30,6 +30,8 @@ export function getLiveTournamentStreams(): SidebarStream[] {
const streams: SidebarStream[] = [];
for (const tournament of RunningTournaments.all) {
if (tournament.isLeagueDivision) continue;
streams.push({
id: `tournament-${tournament.ctx.id}`,
name: tournament.ctx.name,