Skip to content

Commit 4a30586

Browse files
authored
[Resource] Fixed issue that property is cleaned by [#15134]. (#15136)
1 parent c182350 commit 4a30586

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Resources/Resources/ActiveDirectory/Cmdlets/UpdateAzureADApplicationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public override void ExecuteCmdlet()
100100
{
101101
DisplayName = DisplayName,
102102
Homepage = HomePage,
103-
IdentifierUris = (IdentifierUri == null) ? new string[] { } : IdentifierUri,
103+
IdentifierUris = IdentifierUri,
104104
ReplyUrls = ReplyUrl,
105105
AvailableToOtherTenants = this.IsParameterBound(c => c.AvailableToOtherTenants) ? AvailableToOtherTenants : (bool?)null
106106
};

src/Resources/Resources/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
## Upcoming Release
2222
* Allow naming the deployment when testing deployments [#11497]
23+
* Fixed issue that property `IdentifierUri` is cleaned by `Update-AzAdApplication` [#15134]
2324

2425
## Version 4.1.0
2526
* Changed `-IdentifierUris` in `New-AzADApplication` to optional parameter

0 commit comments

Comments
 (0)