From d52c7b53ce44d5428810967169ff4e0bf1198ae9 Mon Sep 17 00:00:00 2001 From: Catherine Renelle <32781029+catrenelle@users.noreply.github.com> Date: Mon, 9 Feb 2026 20:52:47 -0500 Subject: [PATCH] Mark bank-synced transactions as Cleared instead of Uncleared Both SimpleFIN and Plaid only return posted transactions (SimpleFIN filters out pending, Plaid returns settled). These have already cleared at the bank so they should be marked Cleared on import. Co-Authored-By: Claude Opus 4.6 --- src/Purrse.Api/Services/BankSyncService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Purrse.Api/Services/BankSyncService.cs b/src/Purrse.Api/Services/BankSyncService.cs index 4cdeb56..0062b2d 100644 --- a/src/Purrse.Api/Services/BankSyncService.cs +++ b/src/Purrse.Api/Services/BankSyncService.cs @@ -486,7 +486,7 @@ public class BankSyncService : IBankSyncService FitId = parsed.FitId, Fingerprint = fingerprint, Type = parsed.Amount >= 0 ? TransactionType.Credit : TransactionType.Debit, - Status = TransactionStatus.Uncleared + Status = TransactionStatus.Cleared }; _db.Transactions.Add(transaction);