Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
14ad2fd0f8 1.255.2 2026-07-23 23:30:04 +02:00
DebaucheryLibrarian
5a71f00d3d Fixed profile ID missing when profile is updated. 2026-07-23 23:30:02 +02:00
3 changed files with 4 additions and 3 deletions

4
package-lock.json generated
View File

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

@@ -981,6 +981,7 @@ async function getOrCreateActors(baseActors, batchId) {
...actor, ...actor,
actorId, actorId,
update: profileIdsByActorIdAndEntityId[actorId]?.[actor.entity?.id], update: profileIdsByActorIdAndEntityId[actorId]?.[actor.entity?.id],
profileId: profileIdsByActorIdAndEntityId[actorId]?.[actor.entity?.id],
}; };
}) })
.filter((actor) => !!actor.actorId) .filter((actor) => !!actor.actorId)