Skip to content

Commit

Permalink
Update src/Management/src/Wavefront/Exporters/TagExtensions.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Hess <tim.hess@broadcom.com>
  • Loading branch information
bart-vmware and TimHess authored Apr 17, 2024
1 parent 3b39975 commit 22c0a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Management/src/Wavefront/Exporters/TagExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal static class TagExtensions

foreach (KeyValuePair<string, object?> tag in tagCollection)
{
if (string.IsNullOrEmpty(tag.Key) || tag.Value == null || string.IsNullOrEmpty(tag.Value.ToString()))
if (string.IsNullOrEmpty(tag.Key) || string.IsNullOrEmpty(tag.Value?.ToString()))
{
continue;
}
Expand Down

0 comments on commit 22c0a88

Please sign in to comment.