Skip to content

Commit

Permalink
Merge pull request #1407 from Mr-Rm/fix/1405
Browse files Browse the repository at this point in the history
fix #1405: значение для  пропущенного параметра
  • Loading branch information
EvilBeaver authored May 21, 2024
2 parents 17c6a61 + b1b5f44 commit 03388b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScriptEngine/Machine/Contexts/COMWrapperContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public static object MarshalIValue(IValue val)
}
else
{
retValue = ContextValuesMarshaller.ConvertToCLRObject(val);
retValue = ContextValuesMarshaller.ConvertToCLRObject(val) ?? Missing.Value;
}

return retValue;
Expand Down

0 comments on commit 03388b4

Please sign in to comment.