fix(extractor): set missing viaMediaFlowProxy in Streamtape

This commit is contained in:
WebStreamr 2025-08-31 19:22:48 +00:00
parent c82a7ab756
commit 33ee150915
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -7,8 +7,6 @@ export class Fsst extends Extractor {
public readonly label = 'Fsst';
public override readonly ttl = 0;
public supports(_ctx: Context, url: URL): boolean {
return null !== url.host.match(/fsst/);
};

View file

@ -14,6 +14,8 @@ export class Streamtape extends Extractor {
public override readonly ttl = 0;
public override viaMediaFlowProxy = true;
public supports(ctx: Context, url: URL): boolean {
return null !== url.host.match(/streamtape/) && supportsMediaFlowProxy(ctx);
}