We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3711136 commit e479a39Copy full SHA for e479a39
src/ResourceManager/KeyVault/Commands.KeyVault/Models/CertificateIdentityItem.cs
@@ -60,7 +60,7 @@ internal CertificateIdentityItem(CertificateBundle certBundle)
60
NotBefore = certBundle.Attributes.NotBefore;
61
Created = certBundle.Attributes.Created;
62
Updated = certBundle.Attributes.Updated;
63
- Tags = certBundle.Tags.ConvertToHashtable();
+ Tags = (certBundle.Tags == null) ? null : certBundle.Tags.ConvertToHashtable();
64
}
65
66
public bool? Enabled { get; set; }
0 commit comments