From d0958e87714e3577f6e47cca2086806567ffaf8c Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:55:08 +0000 Subject: [PATCH] fix(extractor): handle another LuluStream file not found case --- src/extractor/LuluStream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extractor/LuluStream.ts b/src/extractor/LuluStream.ts index 65c4057..c768e3b 100644 --- a/src/extractor/LuluStream.ts +++ b/src/extractor/LuluStream.ts @@ -35,7 +35,7 @@ export class LuluStream extends Extractor { const fileUrl = new URL(url.href.replace('/e/', '/d/')); const html = await this.fetcher.text(ctx, fileUrl, { headers }); - if (/No such file/.test(html)) { + if (/No such file|File Not Found/.test(html)) { throw new NotFoundError(); }