Skip to content

Commit b451d02

Browse files
authored
Merge pull request #553 from open-ephys/fix-merge-issue
Correct method call for Rhs2116Trigger
2 parents 79c3f41 + 26ab29c commit b451d02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OpenEphys.Onix1/ConfigureRhs2116Trigger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public string ProbeInterfaceLoadFileName
147147
if (string.IsNullOrEmpty(probeInterfaceFileName))
148148
return new Rhs2116ProbeGroup();
149149

150-
return ProbeInterfaceHelper.LoadExternalProbeInterfaceFile<Rhs2116ProbeGroup>(probeInterfaceFileName);
150+
return ProbeInterfaceHelper.LoadExternalProbeInterfaceFile(probeInterfaceFileName, typeof(Rhs2116ProbeGroup)) as Rhs2116ProbeGroup;
151151
});
152152
}
153153
}

0 commit comments

Comments
 (0)