mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
Fix bill
This commit is contained in:
@@ -108,7 +108,7 @@ class BillUpdateService
|
||||
if (isset($data['skip']) && '' !== (string) $data['skip']) {
|
||||
$bill->skip = $data['skip'];
|
||||
}
|
||||
if (isset($data['active']) && '' !== (string) $data['active']) {
|
||||
if (isset($data['active']) && is_bool($data['active'])) {
|
||||
$bill->active = $data['active'];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user