chore: use XPrime in live endpoint

This commit is contained in:
WebStreamr 2025-08-15 12:25:56 +00:00
parent 7b7b0e1e7e
commit be33b0b3b9
No known key found for this signature in database

View file

@ -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;