Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian b72bb39ff7 1.246.14 2026-01-23 01:56:48 +01:00
DebaucheryLibrarian 7cdc4a960f Removed VR indicator from Naughty America scraper. 2026-01-23 01:56:46 +01:00
3 changed files with 3 additions and 10 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.246.13", "version": "1.246.14",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "traxxx", "name": "traxxx",
"version": "1.246.13", "version": "1.246.14",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@aws-sdk/client-s3": "^3.458.0", "@aws-sdk/client-s3": "^3.458.0",

View File

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

View File

@ -59,13 +59,6 @@ async function fetchLatest(channel, page = 1, { parameters }) {
if (res.ok) { if (res.ok) {
const scenes = scrapeLatest(res.context, channel, parameters); const scenes = scrapeLatest(res.context, channel, parameters);
const vrScenes = scenes.filter((scene) => scene.tags.includes('VR'));
// console.log(scenes.length, vrScenes.length, scenes.length / vrScenes.length);
if (vrScenes.length / scenes.length > 0.6) {
console.log('VIRTUAL REALITY', channel.slug, channel.url);
}
return scenes; return scenes;
} }