Skip to content

Commit

Permalink
Fix wron condition on FlattenSingleApiOutput.
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiamurialdo committed Oct 23, 2023
1 parent 88d0dc5 commit f99b23b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ bool GetWrappedStatus(GXBaseObject worker, bool defaultWrapped, Dictionary<strin
}
}
}
if (originalParCount > 1 && Preferences.FlattenSingleApiOutput)
if (originalParCount > 1 && !Preferences.FlattenSingleApiOutput)
{
wrapped = true; //Ignore defaultWrapped parameter.
}
Expand Down

0 comments on commit f99b23b

Please sign in to comment.