From d8d6a102e72f9ffa5d4866fd4299fd27faf6ee87 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Tue, 9 Jun 2026 04:11:38 +0200 Subject: [PATCH] Added global match to preserved keys in actor interpolation. --- actors.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actors.mjs b/actors.mjs index 85e9982..cddf7d1 100644 --- a/actors.mjs +++ b/actors.mjs @@ -80,7 +80,7 @@ function mergeMainProfile(profile, mainProfile) { export async function interpolateProfiles(actorIdsOrNames, context, options = {}) { const profiles = await fetchProfiles(actorIdsOrNames, context); const columns = await context.knex.table('actors').columnInfo().then((table) => Object.keys(table)); - const preservedKeys = ['id', 'name', 'slug', 'entity_id', 'entry_id', 'alias_for', 'created_at', 'batch_id', 'updated_at', 'comment']; + const preservedKeys = ['id', 'name', 'slug', 'entity_id', 'entry_id', 'alias_for', 'created_at', 'batch_id', 'updated_at', 'allow_global_match', 'comment']; const profilesByActorId = profiles.reduce((acc, profile) => ({ ...acc,