From 26ab29c885e5846f21cc7e66d15add38b7613f23 Mon Sep 17 00:00:00 2001 From: bparks13 Date: Tue, 18 Nov 2025 09:39:39 -0500 Subject: [PATCH] Correct method call for Rhs2116Trigger - Due to the order of PRs being merged, a compiler error was introduced that was not caught before merging --- OpenEphys.Onix1/ConfigureRhs2116Trigger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenEphys.Onix1/ConfigureRhs2116Trigger.cs b/OpenEphys.Onix1/ConfigureRhs2116Trigger.cs index 432437f5..bb3657ce 100644 --- a/OpenEphys.Onix1/ConfigureRhs2116Trigger.cs +++ b/OpenEphys.Onix1/ConfigureRhs2116Trigger.cs @@ -147,7 +147,7 @@ public string ProbeInterfaceLoadFileName if (string.IsNullOrEmpty(probeInterfaceFileName)) return new Rhs2116ProbeGroup(); - return ProbeInterfaceHelper.LoadExternalProbeInterfaceFile(probeInterfaceFileName); + return ProbeInterfaceHelper.LoadExternalProbeInterfaceFile(probeInterfaceFileName, typeof(Rhs2116ProbeGroup)) as Rhs2116ProbeGroup; }); } }