Compare commits

...

2 Commits

Author SHA1 Message Date
ThePendulum 204a4d4bdd 1.77.1 2020-02-02 15:26:27 +01:00
ThePendulum 10d2ba78d0 Fixed Score searching for actors infinitely. 2020-02-02 15:26:24 +01:00
3 changed files with 5 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.77.0",
"version": "1.77.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.77.0",
"version": "1.77.1",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -178,7 +178,9 @@ async function fetchProfile(actorName, scraperSlug, page = 1) {
const letter = actorName.charAt(0).toUpperCase();
const url = `https://www.scoreland.com/big-boob-models/browse/${letter}/?page=${page}`;
const res = await bhttp.get(url);
const res = await bhttp.get(url, {
followRedirects: false,
});
if (res.statusCode === 200) {
const actorUrl = scrapeModels(res.body.toString(), actorName);