Fixed profile ID missing when profile is updated.

This commit is contained in:
DebaucheryLibrarian
2026-07-23 23:30:02 +02:00
parent 3529b66032
commit 5a71f00d3d

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)