Skip to content

Commit

Permalink
#1359 : Continue processing rules instead of bailing out.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellwest committed Sep 27, 2024
1 parent 53a7ef6 commit 7ce7265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Spe/Integrations/Tasks/ScriptedItemEventHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RuleContext GetRuleContext(Item contextItem, Item scriptItem)
var applicableScriptItems = libraryItem?.Children?.Where(filter).ToArray();
if (applicableScriptItems == null || !applicableScriptItems.Any())
{
return;
continue;
}

using (var session = ScriptSessionManager.NewSession(ApplicationNames.Default, true))
Expand Down

0 comments on commit 7ce7265

Please sign in to comment.