Skip to content

Commit b262879

Browse files
rlhagermcpyle0819
authored andcommitted
Fix for code warning.
1 parent 3d14f32 commit b262879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnetv4/Aurora/Actions/AuroraWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public async Task<string> ModifyIntegerParametersInGroupAsync(string groupName,
124124
{
125125
foreach (var p in parameters)
126126
{
127-
if (p.IsModifiable.Value && p.DataType == "integer")
127+
if (p.IsModifiable.GetValueOrDefault() && p.DataType == "integer")
128128
{
129129
while (newValue == 0)
130130
{

0 commit comments

Comments
 (0)