Skip to content

Commit

Permalink
fix: CustomID check (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
FriggaHel authored Mar 19, 2024
1 parent 41cef72 commit 9df4b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visual-dotnet/SauceLabs.Visual/VisualClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private async Task<VisualBuild> FindBuildById(string buildId)
return await FindBuildById(buildId!.Trim());
}

if (StringUtils.IsNullOrEmpty(customId))
if (!StringUtils.IsNullOrEmpty(customId))
{
return await FindBuildByCustomId(customId!.Trim());
}
Expand Down

0 comments on commit 9df4b05

Please sign in to comment.