mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 12:12:18 +00:00
Merge branch 'develop' into v480
* develop: Fix #2204 CSV file fix for Belfius
This commit is contained in:
@@ -341,7 +341,7 @@ class FireflyValidator extends Validator
|
||||
|
||||
// check transaction type.
|
||||
if ('transaction_type' === $triggerType) {
|
||||
$count = TransactionType::where('type', strtolower($value))->count();
|
||||
$count = TransactionType::where('type', ucfirst($value))->count();
|
||||
|
||||
return 1 === $count;
|
||||
}
|
||||
|
Reference in New Issue
Block a user