From be33b0b3b99d6e104e201193dc6f3ed00e602240 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Fri, 15 Aug 2025 12:25:56 +0000 Subject: [PATCH] chore: use XPrime in live endpoint --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 944eb3e..00adb30 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,7 +10,7 @@ import { createSources, Source } from './source'; import { HomeCine } from './source/HomeCine'; import { MeineCloud } from './source/MeineCloud'; import { MostraGuarda } from './source/MostraGuarda'; -import { Soaper } from './source/Soaper'; +import { XPrime } from './source/XPrime'; import { contextFromRequestAndResponse, envGet, envIsProd, Fetcher, StreamResolver } from './utils'; if (envIsProd()) { @@ -92,7 +92,7 @@ addon.get('/live', async (req: Request, res: Response) => { new HomeCine(fetcher), new MeineCloud(fetcher), new MostraGuarda(fetcher), - new Soaper(fetcher), + new XPrime(fetcher), ]; let blockedCount = 0;