From 13f494502d7498a6e16c47ffbefc3d405cec7a00 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 27 May 2026 14:42:01 -0500 Subject: [PATCH] Expand allowed "live now" platforms (#10633) --- src/features/liveNow/index.tsx | 3 +++ src/features/liveNow/utils.ts | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/features/liveNow/index.tsx b/src/features/liveNow/index.tsx index e802d0418e..fb1f04b728 100644 --- a/src/features/liveNow/index.tsx +++ b/src/features/liveNow/index.tsx @@ -37,6 +37,9 @@ export const DEFAULT_ALLOWED_DOMAINS = [ 'twitch.tv', 'stream.place', 'bluecast.app', + 'youtube.com', + 'substack.com', + 'beehiiv.com', ] const DEFAULT_STATE = { diff --git a/src/features/liveNow/utils.ts b/src/features/liveNow/utils.ts index a7548adfc6..f2a7c8c62f 100644 --- a/src/features/liveNow/utils.ts +++ b/src/features/liveNow/utils.ts @@ -33,6 +33,8 @@ const serviceUrlToNameMap: Record = { 'stream.place': 'Streamplace', 'skylight.social': 'Skylight', 'bluecast.app': 'Bluecast', + 'substack.com': 'Substack', + 'beehiiv.com': 'Beehiiv', } export function getLiveServiceNames(domains: Set) {