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 b2e4e07 commit 67faad3Copy full SHA for 67faad3
src/Resources/Resources/ActiveDirectory/Cmdlets/UpdateAzureADApplicationCommand.cs
@@ -100,7 +100,7 @@ public override void ExecuteCmdlet()
100
{
101
DisplayName = DisplayName,
102
Homepage = HomePage,
103
- IdentifierUris = (IdentifierUri == null) ? new string[] { } : IdentifierUri,
+ IdentifierUris = IdentifierUri,
104
ReplyUrls = ReplyUrl,
105
AvailableToOtherTenants = this.IsParameterBound(c => c.AvailableToOtherTenants) ? AvailableToOtherTenants : (bool?)null
106
};
src/Resources/Resources/ChangeLog.md
@@ -19,6 +19,7 @@
19
-->
20
21
## Upcoming Release
22
+* Fixed issue that property `IdentifierUri` is cleaned by `Update-AzAdApplication` [#15134]
23
24
## Version 4.1.0
25
* Changed `-IdentifierUris` in `New-AzADApplication` to optional parameter
0 commit comments