Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
43d58ff093 1.253.5 2026-06-09 05:54:11 +02:00
DebaucheryLibrarian
677f72df33 Utilizing allow global match into scene actor association. 2026-06-09 05:54:09 +02:00
3 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.253.4", "version": "1.253.5",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "traxxx", "name": "traxxx",
"version": "1.253.4", "version": "1.253.5",
"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.253.4", "version": "1.253.5",
"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

@@ -913,7 +913,7 @@ async function getOrCreateActors(baseActors, batchId) {
.whereRaw(` .whereRaw(`
actors.slug = base_actors.slug actors.slug = base_actors.slug
AND actors.entity_id IS NULL AND actors.entity_id IS NULL
AND NOT base_actors.collision_likely AND (NOT base_actors.collision_likely OR actors.allow_global_match)
`) `)
.orWhereRaw(` .orWhereRaw(`
actors.slug = base_actors.slug actors.slug = base_actors.slug
@@ -981,7 +981,7 @@ async function getOrCreateActors(baseActors, batchId) {
await storeProfiles(newActorProfiles); await storeProfiles(newActorProfiles);
if (Array.isArray(newActors)) { if (Array.isArray(newActors) && newActors.length > 0) {
await updateActorSearch(newActors.map((actor) => actor.id)); await updateActorSearch(newActors.map((actor) => actor.id));
return newActors.concat(existingActors); return newActors.concat(existingActors);
} }