FF-1698: C# scripts!

This commit is contained in:
John Andrews
2024-08-04 09:53:07 +12:00
parent b28b2893cb
commit a38e0a026d
3 changed files with 1 additions and 3 deletions

View File

@@ -21,8 +21,6 @@ public class HasHardLinks: Node
public override string Icon => "fas fa-link";
/// <inheritdoc />
public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/has-hard-links";
/// <inheritdoc />
public override bool NoEditorOnAdd => true;
/// <summary>
/// Gets or sets the name of the file to check
@@ -49,7 +47,7 @@ public class HasHardLinks: Node
return -1;
}
int count = Math.Min(1, Count);
int count = Math.Max(1, Count);
args.Logger?.ILog("Required hard links: " + count);
bool hasHardLinks = false;