fix(extractor): handle another LuluStream file not found case
This commit is contained in:
parent
8b4aef94be
commit
d0958e8771
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue