Compare commits

..

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
43358550a9 1.248.27 2026-02-04 17:50:27 +01:00
DebaucheryLibrarian
506db492bc Fixed Score scraper breaking if gallery image can't be found, though actual issue was in unprint library. 2026-02-04 17:50:24 +01:00
3 changed files with 10 additions and 10 deletions

12
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.248.26",
"version": "1.248.27",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.248.26",
"version": "1.248.27",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",
@@ -94,7 +94,7 @@
"tunnel": "0.0.6",
"ua-parser-js": "^1.0.37",
"undici": "^5.28.1",
"unprint": "^0.18.24",
"unprint": "^0.18.25",
"url-pattern": "^1.0.3",
"v-tooltip": "^2.1.3",
"video.js": "^8.6.1",
@@ -20380,9 +20380,9 @@
}
},
"node_modules/unprint": {
"version": "0.18.24",
"resolved": "https://registry.npmjs.org/unprint/-/unprint-0.18.24.tgz",
"integrity": "sha512-n3493Y5ysY/XdL4QBydReLN2sQTF89Nb75jErCQN0A2U6MC+MS4E4NXrMFYrb2GFetNqp9Nw0zGKkk6bCPS1Ug==",
"version": "0.18.25",
"resolved": "https://registry.npmjs.org/unprint/-/unprint-0.18.25.tgz",
"integrity": "sha512-eGUq818vUOHOqJ1niie/2SH3nu3zf6yPWQrlPgpJJOi8QqxS1XLHVStwU7Ql7VdBPXjS1BbWoHbX+JQptKGQAQ==",
"dependencies": {
"bottleneck": "^2.19.5",
"cookie": "^1.1.1",

View File

@@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.248.26",
"version": "1.248.27",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {
@@ -153,7 +153,7 @@
"tunnel": "0.0.6",
"ua-parser-js": "^1.0.37",
"undici": "^5.28.1",
"unprint": "^0.18.24",
"unprint": "^0.18.25",
"url-pattern": "^1.0.3",
"v-tooltip": "^2.1.3",
"video.js": "^8.6.1",

View File

@@ -174,9 +174,9 @@ function scrapeScene({ query }, url) {
return Array.from(new Set([
...isJoin ? [] : [link],
img.replace('_tn', ''),
img?.replace('_tn', ''),
img,
]));
])).filter(Boolean);
});
if (poster) {