Skip to content

Commit 7ce7265

Browse files
committed
#1359 : Continue processing rules instead of bailing out.
1 parent 53a7ef6 commit 7ce7265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Spe/Integrations/Tasks/ScriptedItemEventHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ RuleContext GetRuleContext(Item contextItem, Item scriptItem)
6161
var applicableScriptItems = libraryItem?.Children?.Where(filter).ToArray();
6262
if (applicableScriptItems == null || !applicableScriptItems.Any())
6363
{
64-
return;
64+
continue;
6565
}
6666

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

0 commit comments

Comments
 (0)