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(); }