forked from DebaucheryLibrarian/traxxx
Ignoring non-scene page (possible CF or similar protection) in Vixen scraper.
This commit is contained in:
parent
6633ce78d0
commit
0b86def315
|
@ -240,7 +240,11 @@ async function fetchScene(url, site, baseRelease) {
|
|||
const res = await http.get(apiUrl);
|
||||
|
||||
if (res.ok) {
|
||||
return scrapeScene(res.body.data, url, site, baseRelease);
|
||||
if (res.body.data) {
|
||||
return scrapeScene(res.body.data, url, site, baseRelease);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
return res.status;
|
||||
|
@ -253,10 +257,14 @@ async function fetchProfile({ name: actorName }, { site }, include) {
|
|||
const res = await http.get(url);
|
||||
|
||||
if (res.ok) {
|
||||
return scrapeProfile(res.body.data, origin, include.scenes);
|
||||
if (res.body.data) {
|
||||
return scrapeProfile(res.body.data, origin, include.scenes);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
return null;
|
||||
return res.status;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
|
Loading…
Reference in New Issue