This commit is contained in:
James Cole 2019-11-14 17:33:04 +01:00
parent 501efe507f
commit 26a4b6844e
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -282,7 +282,8 @@ class RecurringRepository implements RecurringRepositoryInterface
/** @var RecurrenceMeta $meta */
foreach ($transaction->recurrenceTransactionMeta as $meta) {
if ('tags' === $meta->name && '' !== $meta->value) {
$tags = explode(',', $meta->value);
//$tags = explode(',', $meta->value);
$tags = json_decode($meta->value, true, 512, JSON_THROW_ON_ERROR);
}
}