From 7a0506bb5f81c3d973acbbb4d3401a670f55c548 Mon Sep 17 00:00:00 2001 From: Kelly Thomas Reardon Date: Wed, 27 May 2026 20:38:47 -0500 Subject: [PATCH] correctly changing task due timestamp to local time instead of leaving it in UTC fixes #7 --- Start-DoneTickNotifier.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Start-DoneTickNotifier.ps1 b/Start-DoneTickNotifier.ps1 index 10a14ca..244bc85 100644 --- a/Start-DoneTickNotifier.ps1 +++ b/Start-DoneTickNotifier.ps1 @@ -66,7 +66,7 @@ while ($true) { { if ($chore.nextDueDate) { - $dueDate = Get-Date $chore.nextDueDate + $dueDate = (Get-Date $chore.nextDueDate).ToLocalTime() if (($dueDate - $today).Days -lt 0) #OVERDUE { write-host "$($chore.name) $dueDate is overdue!"