From 5a71f00d3d361f6b1f7636ef3763047bc06a22e6 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Thu, 23 Jul 2026 23:30:02 +0200 Subject: [PATCH] Fixed profile ID missing when profile is updated. --- src/actors.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/actors.js b/src/actors.js index 163c0062..0cd58f83 100755 --- a/src/actors.js +++ b/src/actors.js @@ -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)