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",
"version": "1.253.4",
"version": "1.253.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.253.4",
"version": "1.253.5",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

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

View File

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