Fix more date issues

This commit is contained in:
James Cole
2020-06-21 19:16:21 +02:00
parent 7196ac3ec9
commit 4fef316ddd
2 changed files with 6 additions and 3 deletions

View File

@@ -208,7 +208,7 @@ class TransactionGroupRepository implements TransactionGroupRepositoryInterface
$return = [];
foreach ($query as $row) {
$return[$row->name] = new Carbon(json_decode($row->data));
$return[$row->name] = new Carbon(json_decode($row->data, true, 512, JSON_THROW_ON_ERROR));
}
return new NullArrayObject($return);