Skip to content

Commit

Permalink
Update src/HotChocolate/Fusion-vnext/src/Fusion.Execution/Planning/Op…
Browse files Browse the repository at this point in the history
…erationPlanner.cs
  • Loading branch information
michaelstaib authored Dec 13, 2024
1 parent 271e757 commit 2a62551
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -774,8 +774,8 @@ private void TryMakeOperationConditional(
return;
}

if (!string.Equals(firstSelection.SkipVariable, selection.SkipVariable, StringComparison.Ordinal) ||
!string.Equals(firstSelection.IncludeVariable, selection.IncludeVariable, StringComparison.Ordinal))
if (!string.Equals(firstSelection.SkipVariable, selection.SkipVariable, StringComparison.Ordinal)
|| !string.Equals(firstSelection.IncludeVariable, selection.IncludeVariable, StringComparison.Ordinal))
{
return;
}
Expand Down

0 comments on commit 2a62551

Please sign in to comment.