Compare commits

..

No commits in common. "8a139e1ac0bfae74766caf1f5298ceb25f29a634" and "2f9c2332f9b97a306170f42e1bcacd3a8d625e34" have entirely different histories.

3 changed files with 2 additions and 6 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -7,7 +7,6 @@ const cheerio = require('cheerio');
const moment = require('moment');
const { ex } = require('../utils/q');
const slugify = require('../utils/slugify');
async function fetchPhotos(url) {
const res = await bhttp.get(url);
@ -190,9 +189,6 @@ async function scrapeScene(html, url, site) {
release.tags = hasTrans ? [...rawTags, 'transsexual'] : rawTags;
}
const channel = data?.productionCompany?.name || $('.studioLink a').attr('title')?.trim();
if (channel) release.channel = slugify(channel, { delimiter: '' });
release.poster = videoData.picPreview;
const photoLink = $('.picturesItem a').attr('href');