Skip to content

Commit

Permalink
🐛 Fix missin ! (Logical negation operator)
Browse files Browse the repository at this point in the history
- For PR #105 in ced9d00
- Closes #107
  • Loading branch information
teramako committed Jan 24, 2025
1 parent 5a49220 commit fc2c799
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Jagabata/Cmdlets/Utilities/JobTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,11 @@ private async Task UpdateWorkflowJobNodes()
{
foreach (var node in apiResult.Contents.Results)
{
if (node.SummaryFields.ContainsKey("Job")) continue;
if (!node.SummaryFields.ContainsKey("Job"))
{
continue;
}

JobNodeSummary jobSummary = new(node);
if (Children.TryGetValue(jobSummary.Id, out var jp))
{
Expand Down

0 comments on commit fc2c799

Please # to comment.