We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe5524 commit 2e7e0b5Copy full SHA for 2e7e0b5
2 files changed
packages/loot-core/src/server/accounts/sync.ts
@@ -531,7 +531,7 @@ export async function reconcileTransactions(
531
category: existing.category || trans.category || null,
532
imported_payee: trans.imported_payee || null,
533
notes: existing.notes || trans.notes || null,
534
- cleared: trans.cleared ?? existing.cleared,
+ cleared: existing.cleared || trans.cleared || false,
535
raw_synced_data:
536
existing.raw_synced_data ?? trans.raw_synced_data ?? null,
537
};
upcoming-release-notes/6082.md
@@ -0,0 +1,6 @@
1
+---
2
+category: Bugfix
3
+authors: [Brostash]
4
5
+
6
+Prefer the incoming transaction's cleared status when importing from file/bank sync
0 commit comments