Skip to content

Commit f99b23b

Browse files
Fix wron condition on FlattenSingleApiOutput.
1 parent 88d0dc5 commit f99b23b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/dotnetframework/GxClasses/Services/GxRestWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ bool GetWrappedStatus(GXBaseObject worker, bool defaultWrapped, Dictionary<strin
372372
}
373373
}
374374
}
375-
if (originalParCount > 1 && Preferences.FlattenSingleApiOutput)
375+
if (originalParCount > 1 && !Preferences.FlattenSingleApiOutput)
376376
{
377377
wrapped = true; //Ignore defaultWrapped parameter.
378378
}

0 commit comments

Comments
 (0)