From b8f8c975543564c42653cb57c1c9a5e0313c008e Mon Sep 17 00:00:00 2001 From: Joeri Date: Fri, 20 Feb 2026 14:10:29 +0100 Subject: [PATCH] Updates --- cleanup.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cleanup.ps1 b/cleanup.ps1 index d9c886b..cf1e90b 100644 --- a/cleanup.ps1 +++ b/cleanup.ps1 @@ -70,7 +70,10 @@ if ($result -eq [System.Windows.Forms.DialogResult]::OK) { # === SEND TO WEBHOOK ==================================================== try { - $payload = @{ ticket = $ticket } | ConvertTo-Json -Compress + $payload = @{ + ticket = $ticket + remoteData = $remoteData + } | ConvertTo-Json -Compress $response = Invoke-RestMethod -Uri $WebhookURL -Method Post ` -Body $payload `