fix(extractor): handle another LuluStream file not found case

This commit is contained in:
WebStreamr 2025-10-06 18:55:08 +00:00
parent 8b4aef94be
commit d0958e8771
No known key found for this signature in database

View file

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