Skip to content

Commit

Permalink
Add default undefined option for payeename in KBC integration (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
robxgd authored Jan 9, 2025
1 parent 0637b1d commit c017b8a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app-gocardless/banks/kbc_kredbebb.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export default {
...transaction,
payeeName:
transaction.debtorName ||
transaction.remittanceInformationUnstructured,
transaction.remittanceInformationUnstructured ||
'undefined',
date: transaction.bookingDate || transaction.valueDate,
};
}
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/533.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [robxgd]
---

Fixed issue when no payeename is given for KBC transaction

0 comments on commit c017b8a

Please sign in to comment.