fix(extractor): set missing viaMediaFlowProxy in Streamtape
This commit is contained in:
parent
c82a7ab756
commit
33ee150915
2 changed files with 2 additions and 2 deletions
|
|
@ -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/);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue