From 858f5fb6c38830e88c6e2d42af967f763841804b Mon Sep 17 00:00:00 2001 From: John Duprey Date: Tue, 25 Mar 2025 18:24:03 -0400 Subject: [PATCH 1/2] Update Invoke-ListScheduledItems.ps1 --- .../CIPP/Scheduler/Invoke-ListScheduledItems.ps1 | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-ListScheduledItems.ps1 b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-ListScheduledItems.ps1 index e58f18745f8d..ceadb14858a8 100644 --- a/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-ListScheduledItems.ps1 +++ b/Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Scheduler/Invoke-ListScheduledItems.ps1 @@ -1,6 +1,6 @@ using namespace System.Net -Function Invoke-ListScheduledItems { +function Invoke-ListScheduledItems { <# .FUNCTIONALITY Entrypoint,AnyTenant @@ -65,14 +65,10 @@ Function Invoke-ListScheduledItems { } try { $Task.ExecutedTime = [DateTimeOffset]::FromUnixTimeSeconds($Task.ExecutedTime).UtcDateTime - } catch { - $Task.ExecutedTime = [DateTime]::MinValue - } + } catch {} try { $Task.ScheduledTime = [DateTimeOffset]::FromUnixTimeSeconds($Task.ScheduledTime).UtcDateTime - } catch { - $Task.ScheduledTime = [DateTime]::MinValue - } + } catch {} $Task } From 9da444e4beb0a0f929caba66336b4dff65115b38 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Wed, 26 Mar 2025 00:54:21 +0100 Subject: [PATCH 2/2] up v --- version_latest.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version_latest.txt b/version_latest.txt index ba7f754d0c33..815da58b7a9e 100644 --- a/version_latest.txt +++ b/version_latest.txt @@ -1 +1 @@ -7.4.0 +7.4.1