From fbd1138d97dda2df66bee13ad3ca6e83d55ebc25 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 16 Jan 2026 18:31:01 +0200 Subject: [PATCH] Add fishing minigame (#9713) --- src/state/service-config.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/state/service-config.tsx b/src/state/service-config.tsx index a04cbb51ee..66ad5a0e52 100644 --- a/src/state/service-config.tsx +++ b/src/state/service-config.tsx @@ -85,7 +85,11 @@ export function useTrendingConfig() { return useContext(TrendingContext) } -const DEFAULT_LIVE_ALLOWED_DOMAINS = ['twitch.tv', 'www.twitch.tv'] +const DEFAULT_LIVE_ALLOWED_DOMAINS = [ + 'twitch.tv', + 'www.twitch.tv', + 'stream.place', +] export type LiveNowConfig = { allowedDomains: Set }