From 00681e1411547aad03c59b98ae9106352ba5b4de Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Thu, 26 Jun 2025 04:21:20 +0000 Subject: [PATCH] fix(extractor): disable ip/session locked Fsst until a solution is found or MediaFlow Proxy is added --- src/extractor/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/extractor/index.ts b/src/extractor/index.ts index b890ef3..8e806a9 100644 --- a/src/extractor/index.ts +++ b/src/extractor/index.ts @@ -3,7 +3,6 @@ import { Dropload } from './Dropload'; import { ExternalUrl } from './ExternalUrl'; import { Extractor } from './Extractor'; import { Fetcher } from '../utils'; -import { Fsst } from './Fsst'; import { KinoGer } from './KinoGer'; import { Mixdrop } from './Mixdrop'; import { Soaper } from './Soaper'; @@ -18,7 +17,6 @@ export * from './ExtractorRegistry'; export const createExtractors = (fetcher: Fetcher): Extractor[] => [ new DoodStream(fetcher), new Dropload(fetcher), - new Fsst(fetcher), new SuperVideo(fetcher), new KinoGer(fetcher), new Mixdrop(fetcher),