mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 18:40:34 -05:00
fix error handling for simplefin batch sync (#5822)
* fix error handling for batch simplefin sync * note
This commit is contained in:
@@ -162,8 +162,8 @@ function getAccountResponse(results, accountId, startDate) {
|
||||
return;
|
||||
}
|
||||
|
||||
const needsAttention = results.sferrors.find(
|
||||
e => e === `Connection to ${account.org.name} may need attention`,
|
||||
const needsAttention = results.sferrors.find(e =>
|
||||
e.startsWith(`Connection to ${account.org.name} may need attention`),
|
||||
);
|
||||
if (needsAttention) {
|
||||
logAccountError(results, accountId, {
|
||||
|
||||
6
upcoming-release-notes/5822.md
Normal file
6
upcoming-release-notes/5822.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [matt-fidd]
|
||||
---
|
||||
|
||||
Fix account sync status indicators when using SimpleFIN
|
||||
Reference in New Issue
Block a user