Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 88eeab410b Added filter parameter to Gamma scraper to distinguish Evil Angel exclusives from channel scenes. 2020-09-10 03:43:16 +02:00
DebaucheryLibrarian cecc01d216 1.128.0 2020-09-10 03:17:33 +02:00
4 changed files with 9 additions and 2 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -1969,6 +1969,9 @@ const sites = [
name: 'Evil Angel',
url: 'https://www.evilangel.com',
parent: 'evilangel',
parameters: {
filterExclusive: true,
},
},
{
slug: 'analacrobats',

View File

@ -106,6 +106,10 @@ async function scrapeApiReleases(json, site) {
return null;
}
if (site.parameters?.filterExclusive && scene.availableOnSite.length > 1) {
return null;
}
const release = {
entryId: scene.clip_id,
title: scene.title,