mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fixed bug on description field
Signed-off-by: Maxco10 <mmagnani93@gmail.com>
This commit is contained in:
parent
b6aa76477e
commit
dc0a2a2a10
@ -289,7 +289,7 @@ class RuleRepository implements RuleRepositoryInterface
|
||||
$rule->strict = array_key_exists('strict', $data) ? $data['strict'] : false;
|
||||
$rule->stop_processing = array_key_exists('stop_processing', $data) ? $data['stop_processing'] : false;
|
||||
$rule->title = $data['title'];
|
||||
$rule->description = array_key_exists('stop_processing', $data) ? $data['stop_processing'] : null;
|
||||
$rule->description = $data['description'];
|
||||
$rule->save();
|
||||
$rule->refresh();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user