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

View File

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

View File

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