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 52091ef commit 8f6543eCopy full SHA for 8f6543e
Modules/CIPPCore/Public/Get-CIPPTestResults.ps1
@@ -28,12 +28,7 @@ function Get-CIPPTestResults {
28
foreach ($CountRow in $CountData) {
29
$TypeName = $CountRow.RowKey -replace '-Count$', ''
30
$TenantCounts[$TypeName] = $CountRow.DataCount
31
-
32
- if ($CountRow.Timestamp) {
33
- if (-not $LatestTimestamp -or $CountRow.Timestamp -gt $LatestTimestamp) {
34
- $LatestTimestamp = $CountRow.Timestamp
35
- }
36
+ $LatestTimestamp = $CountRow.Timestamp
37
}
38
39
return [PSCustomObject]@{
0 commit comments