fix inverted logic
This commit is contained in:
@@ -36,7 +36,7 @@ public abstract class PluginFunction : PluginFeature
|
||||
{
|
||||
object? result = default;
|
||||
|
||||
if (!OnPreExecute(@params, ref result))
|
||||
if (OnPreExecute(@params, ref result))
|
||||
result = ExecuteFunction(@params);
|
||||
|
||||
OnPostExecute(@params, ref result);
|
||||
|
||||
Reference in New Issue
Block a user