Fix LHV bank adapter not being loaded due to filename mismatch (#6533)

* Fix LHV bank adapter not being loaded due to filename mismatch

The bank-factory.js loads bank adapters by filtering for files containing
underscores, but lhv-lhvbee22.js used a hyphen. This caused the LHV adapter
to never be loaded, falling back to the generic IntegrationBank handler
which doesn't extract payee names from card transaction remittance info.

Rename lhv-lhvbee22.js to lhv_lhvbee22.js to match the naming convention
used by all other bank adapters.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* Add release notes for PR #6533

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* [autofix.ci] apply automated fixes

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Lenno Nagel
2026-01-06 20:43:54 +02:00
committed by GitHub
parent a2a82e90d6
commit a9509f477f
3 changed files with 7 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
import LhvLhvbee22 from '../lhv-lhvbee22';
import LhvLhvbee22 from '../lhv_lhvbee22';
describe('#normalizeTransaction', () => {
const bookedCardTransaction = {

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [lnagel]
---
Fix LHV bank adapter not being loaded, causing card payment payee names to show full remittance string instead of extracted merchant name.