From 83700b79385dd97063c692b3c077c70213e47d3e Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Sun, 2 Nov 2025 10:11:52 +0000 Subject: [PATCH] Create round-up transaction for same time as original transaction Instead of creating it for 00:00 on the same day --- autosave.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autosave.php b/autosave.php index 75c12a7..421a6a0 100644 --- a/autosave.php +++ b/autosave.php @@ -149,7 +149,7 @@ function createAutoSaveTransaction(array $group, array $arguments): void 'source_id' => $arguments['account'], 'destination_id' => $arguments['destination'], 'description' => '(Round-up transaction)', - 'date' => substr($first['date'], 0, 10), + 'date' => $first['date'], 'tags' => ['Round-up'], 'currency_code' => $first['currency_code'], 'amount' => $amountToCreate,