FF-1698: C# scripts!

This commit is contained in:
John Andrews
2024-08-06 07:56:57 +12:00
parent e65c4d6113
commit 2347647947
3 changed files with 3 additions and 1 deletions

View File

@@ -47,9 +47,11 @@ public abstract class ScriptBase : Node
{
Args = args,
Logger = args.Logger,
TempPath = args.TempPath,
Code = Language is ScriptLanguage.CSharp or ScriptLanguage.JavaScript ? Code : args.ReplaceVariables(Code),
ScriptType = ScriptType.Flow,
Language = Language
Language = Language,
NotificationCallback = args.NotificationCallback
});
if (result.Failed(out var error))