Compare commits

..

No commits in common. "b72bb39ff7860543fac60de14042f1b7e1cc80b7" and "677c7366210e313d7736d121dace92d72cb0d66c" have entirely different histories.

3 changed files with 10 additions and 3 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@ -59,6 +59,13 @@ async function fetchLatest(channel, page = 1, { parameters }) {
if (res.ok) {
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;
}