mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-28 03:34:32 -06:00
Merge pull request #1708 from mathieupost/patch-1
Fix bunq import "Undefined index: apply_rules"
This commit is contained in:
commit
069015c9b1
@ -79,7 +79,7 @@ class ChooseAccountsHandler implements BunqJobConfigurationInterface
|
||||
$config = $this->repository->getConfiguration($this->importJob);
|
||||
$accounts = $config['accounts'] ?? [];
|
||||
$mapping = $data['account_mapping'] ?? [];
|
||||
$applyRules = 1 === (int)$data['apply_rules'];
|
||||
$applyRules = 1 === (int)($data['apply_rules'] ?? 0);
|
||||
$final = [];
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user