Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
2d1897413e 1.252.2 2026-04-03 00:40:48 +02:00
DebaucheryLibrarian
802fd44260 Enabled gay results in Teen Core Club query. 2026-04-03 00:40:45 +02:00
3 changed files with 5 additions and 4 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@@ -62,7 +62,8 @@ function scrapeScene(scene, channel) {
}
async function fetchLatest(channel, page = 1, { parameters }) {
const url = `https://api.fundorado.com/api/videos/browse/labels/${parameters.legacySiteId}?page=${page}&sg=false&sort=release&video_type=scene&lang=en`;
// sg: show gay
const url = `https://api.fundorado.com/api/videos/browse/labels/${parameters.legacySiteId}?page=${page}&sg=true&sort=release&video_type=scene&lang=en`;
const res = await unprint.get(url);
if (res.ok && res.data?.videos?.data) {