From 075c6079c37257d76ed35a6d324dcef3a11282e5 Mon Sep 17 00:00:00 2001 From: Kelly Thomas Reardon Date: Tue, 2 Jun 2026 20:35:10 -0500 Subject: [PATCH] resolving #10 completing #8 --- Start-DoneTickConsumer.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Start-DoneTickConsumer.ps1 b/Start-DoneTickConsumer.ps1 index 48dcd1e..85cf29c 100644 --- a/Start-DoneTickConsumer.ps1 +++ b/Start-DoneTickConsumer.ps1 @@ -103,7 +103,7 @@ function Receive-Webhook } "task.reminder" { $notificationTitle = "Donetick Task Reminder" - $notificationContent = "$($payload.data.name) is due at $(Get-Date $payload.data.due_date)" + $notificationContent = "$($payload.data.name) is due at $((Get-Date $payload.data.due_date).ToLocalTime())" } "task.created" { $notificationTitle = "Donetick Task Created" @@ -113,7 +113,7 @@ function Receive-Webhook } else { - $notificationContent = "$($payload.data.chore.name) created with due date of $(Get-Date $payload.data.chore.nextDueDate)" + $notificationContent = "$($payload.data.chore.name) created with due date of $((Get-Date $payload.data.chore.nextDueDate).ToLocalTime())" } } default {