Skip to content

Commit

Permalink
Merge pull request #5661 from dannyKBjj/Fix-issue-#5594---IntuneDevic…
Browse files Browse the repository at this point in the history
…eConfigurationPolicyiOS

Fix for issue #5594
  • Loading branch information
NikCharlebois authored Jan 29, 2025
2 parents 2e80c5c + 3846690 commit 6b11694
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@
* Fix values that have a zero length whitespace character.
* IntuneAppProtectionPolicyiOS
* Fixes [#5589] https://github.com/microsoft/Microsoft365DSC/issues/5589
* IntuneDeviceConfigurationPolicyiOS
* Fixes [#5594] https://github.com/microsoft/Microsoft365DSC/issues/5594
* SCAutoSensitivityLabelPolicy
* Use correct parameter `DesiredValues` given to `Test-M365DSCParameterState`,
contrary to `EXOTenantAllowBlockListItems` these resources are not affected
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ function Get-TargetResource
foreach ($currentValue in $currentValueArray)
{
$currentHash = @{}
$currentHash.add('AppId', $currentValue.appid)
$currentHash.add('AppId', $currentValue.appId)
$currentHash.add('Publisher', $currentValue.publisher)
$currentHash.add('AppStoreUrl', $currentValue.appStoreUrl)
$currentHash.add('Name', $currentValue.name)
Expand All @@ -1075,7 +1075,7 @@ function Get-TargetResource
foreach ($currentValue in $currentValueArray)
{
$currentHash = @{}
$currentHash.add('AppId', $currentValue.appid)
$currentHash.add('AppId', $currentValue.appId)
$currentHash.add('Publisher', $currentValue.publisher)
$currentHash.add('AppStoreUrl', $currentValue.appStoreUrl)
$currentHash.add('Name', $currentValue.name)
Expand All @@ -1092,7 +1092,7 @@ function Get-TargetResource
foreach ($currentValue in $currentValueArray)
{
$currentHash = @{}
$currentHash.add('AppId', $currentValue.appid)
$currentHash.add('AppId', $currentValue.appId)
$currentHash.add('Publisher', $currentValue.publisher)
$currentHash.add('AppStoreUrl', $currentValue.appStoreUrl)
$currentHash.add('Name', $currentValue.name)
Expand Down Expand Up @@ -1149,7 +1149,7 @@ function Get-TargetResource
foreach ($currentChildValue in $currentValueChildArray)
{
$currentHash = @{}
$currentHash.add('AppId', $currentValue.appid)
$currentHash.add('AppId', $currentValue.appId)
$currentHash.add('Publisher', $currentValue.publisher)
$currentHash.add('AppStoreUrl', $currentValue.appStoreUrl)
$currentHash.add('Name', $currentValue.name)
Expand Down

0 comments on commit 6b11694

Please sign in to comment.