From 86f6f5464273a2bfbef54624b517ea50326e63c5 Mon Sep 17 00:00:00 2001 From: Pierre Lehnen <55164754+pierre-lehnen-rc@users.noreply.github.com> Date: Thu, 21 Sep 2023 14:29:22 -0300 Subject: [PATCH] Update apps/meteor/app/integrations/server/lib/ScriptEngine.ts Co-authored-by: Marcos Spessatto Defendi --- apps/meteor/app/integrations/server/lib/ScriptEngine.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/meteor/app/integrations/server/lib/ScriptEngine.ts b/apps/meteor/app/integrations/server/lib/ScriptEngine.ts index 8386418799f1..e46984a893ef 100644 --- a/apps/meteor/app/integrations/server/lib/ScriptEngine.ts +++ b/apps/meteor/app/integrations/server/lib/ScriptEngine.ts @@ -276,7 +276,7 @@ export abstract class IntegrationScriptEngine { } if (!script[method]) { - this.logger.error(`Method "${method}" no found in the Integration "${integration.name}"`); + this.logger.error(`Method "${method}" not found in the Integration "${integration.name}"`); await updateHistory({ historyId, step: `execute-script-no-method-${method}` }); return; }