From fb9f2ce68e3c6faf8a9a91ce3a95ccb00a6fdec9 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 22 Jan 2026 16:53:06 -0600 Subject: [PATCH] Enable Bluecast for Live Now --- src/components/live/utils.ts | 2 ++ src/state/service-config.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/components/live/utils.ts b/src/components/live/utils.ts index 10b0ba8f90..2172ed3db4 100644 --- a/src/components/live/utils.ts +++ b/src/components/live/utils.ts @@ -49,6 +49,8 @@ const serviceUrlToNameMap: Record = { 'www.espn.com': 'ESPN', 'stream.place': 'Streamplace', 'skylight.social': 'Skylight', + 'bluecast.app': 'Bluecast', + 'www.bluecast.app': 'Bluecast', } export function getLiveServiceNames(domains: Set) { diff --git a/src/state/service-config.tsx b/src/state/service-config.tsx index 8393929477..f5059bc289 100644 --- a/src/state/service-config.tsx +++ b/src/state/service-config.tsx @@ -85,6 +85,8 @@ const DEFAULT_LIVE_ALLOWED_DOMAINS = [ 'twitch.tv', 'www.twitch.tv', 'stream.place', + 'bluecast.app', + 'www.bluecast.app', ] export type LiveNowConfig = { allowedDomains: Set