fix(extractor): do not cache session-scoped Fsst

should fix issues where results work only once
This commit is contained in:
WebStreamr 2025-06-25 20:06:18 +00:00
parent 80e4f4edc4
commit ec037d7c90
No known key found for this signature in database

View file

@ -8,6 +8,8 @@ export class Fsst extends Extractor {
public readonly label = 'Fsst';
public override readonly ttl = 0;
private readonly fetcher: Fetcher;
public constructor(fetcher: Fetcher) {