Compare commits

..

No commits in common. "204a4d4bdd4058a64d8d91969d87d02e24f0d768" and "96e027b4e35a6a89ec9f456dbc6ea8208e75878f" have entirely different histories.

3 changed files with 3 additions and 5 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -178,9 +178,7 @@ 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, {
followRedirects: false,
});
const res = await bhttp.get(url);
if (res.statusCode === 200) {
const actorUrl = scrapeModels(res.body.toString(), actorName);