Skip to content

Commit

Permalink
Merge pull request #156 from englbit/patch-1
Browse files Browse the repository at this point in the history
NullReferenceException Fixed
  • Loading branch information
jogibear9988 authored Nov 3, 2020
2 parents 8b801a3 + 15692e5 commit 6f2b6f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ public static void ConvertUCToCall(S7FunctionBlock myFct, S7ProgrammFolder myFld
if (pRow != null) newPar.Value = ((S7DataRow)pRow).StructuredName.Substring(((S7DataRow)pRow).StructuredName.IndexOf('.') + 1);

}
else
else if (par != null)
{
switch (((S7DataRow)s7DataRow).DataType)
{
Expand Down

0 comments on commit 6f2b6f1

Please sign in to comment.