From cffaec92ecb3bb9e353414608ea2b6eb14b15ccd Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 22 Nov 2021 10:14:27 -0330 Subject: [PATCH] Place custom criteria call inside try block --- ObservatoryExplorer/CustomCriteriaManager.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ObservatoryExplorer/CustomCriteriaManager.cs b/ObservatoryExplorer/CustomCriteriaManager.cs index e6b23b4..f52be76 100644 --- a/ObservatoryExplorer/CustomCriteriaManager.cs +++ b/ObservatoryExplorer/CustomCriteriaManager.cs @@ -205,10 +205,9 @@ namespace Observatory.Explorer parents = null; } - var result = criteriaFunction.Call(scan, parents, scanList, bioSignals, geoSignals); - try { + var result = criteriaFunction.Call(scan, parents, scanList, bioSignals, geoSignals); if (result.Length > 0 && ((bool?)result[0]).GetValueOrDefault(false)) { results.Add((result[1].ToString(), result[2].ToString()));