From f1b658a2fa1c368ad3d7b0fcfc0e79f780582d7d Mon Sep 17 00:00:00 2001 From: Chris Ainsworth-Patrick Date: Tue, 17 Oct 2023 09:35:56 +0100 Subject: [PATCH] little rename --- lib/events/register_skill.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/events/register_skill.ts b/lib/events/register_skill.ts index 32f0891..f6eb2ab 100644 --- a/lib/events/register_skill.ts +++ b/lib/events/register_skill.ts @@ -433,11 +433,11 @@ export async function inlineDatalogResources( // subscription paths defined in yaml for (const subscriptionPath of skill.datalogSubscriptionPaths || []) { - const groupMatches = await getDatalogSubscriptionFileMatches( + const subscriptionPathMatches = await getDatalogSubscriptionFileMatches( p, `datalog/subscription/${subscriptionPath}`, ); - updateSubscriptions(datalogSubscriptions, groupMatches); + updateSubscriptions(datalogSubscriptions, subscriptionPathMatches); } delete skill.datalogSubscriptionPaths;