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 7f3d7e0 commit 2a1ffb7Copy full SHA for 2a1ffb7
Modules/CippEntrypoints/CippEntrypoints.psm1
@@ -432,9 +432,15 @@ function Receive-CIPPTimerTrigger {
432
if ($Parameters.Tenant) {
433
$metadata['Tenant'] = $Parameters.Tenant
434
}
435
+ if ($Parameters.Tenant.value) {
436
+ $metadata['Tenant'] = $Parameters.Tenant.value
437
+ }
438
if ($Parameters.TenantFilter) {
439
$metadata['Tenant'] = $Parameters.TenantFilter
440
441
+ if ($Parameters.TenantFilter.value) {
442
+ $metadata['Tenant'] = $Parameters.TenantFilter.value
443
444
445
446
# Wrap the timer function execution with telemetry
0 commit comments