mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 02:45:58 +00:00
Fix #10888
This commit is contained in:
@@ -162,15 +162,14 @@ class RecurringEnrichment implements EnrichmentInterface
|
|||||||
foreach ($set as $carbon) {
|
foreach ($set as $carbon) {
|
||||||
$occurrences[] = $carbon->toAtomString();
|
$occurrences[] = $carbon->toAtomString();
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->repetitions[$id][$repId] = [
|
$this->repetitions[$id][$repId] = [
|
||||||
'id' => (string)$repId,
|
'id' => (string)$repId,
|
||||||
'created_at' => $repetition->created_at->toAtomString(),
|
'created_at' => $repetition->created_at->toAtomString(),
|
||||||
'updated_at' => $repetition->updated_at->toAtomString(),
|
'updated_at' => $repetition->updated_at->toAtomString(),
|
||||||
'type' => $repetition->repetition_type,
|
'type' => $repetition->repetition_type,
|
||||||
'moment' => (string)$repetition->moment,
|
'moment' => (string)$repetition->repetition_moment,
|
||||||
'skip' => (int)$repetition->skip,
|
'skip' => (int)$repetition->repetition_skip,
|
||||||
'weekend' => RecurrenceRepetitionWeekend::from((int)$repetition->weekend),
|
'weekend' => RecurrenceRepetitionWeekend::from((int)$repetition->weekend)->value,
|
||||||
'description' => $this->getRepetitionDescription($repetition),
|
'description' => $this->getRepetitionDescription($repetition),
|
||||||
'occurrences' => $occurrences,
|
'occurrences' => $occurrences,
|
||||||
];
|
];
|
||||||
|
@@ -30,6 +30,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- [Issue 10853](https://github.com/firefly-iii/firefly-iii/issues/10853) (Failed to Send Discord Notification) reported by @pimonteiro
|
- [Issue 10853](https://github.com/firefly-iii/firefly-iii/issues/10853) (Failed to Send Discord Notification) reported by @pimonteiro
|
||||||
- [Issue 10854](https://github.com/firefly-iii/firefly-iii/issues/10854) (string / null in budget causes budget page to not render) reported by @4e868df3
|
- [Issue 10854](https://github.com/firefly-iii/firefly-iii/issues/10854) (string / null in budget causes budget page to not render) reported by @4e868df3
|
||||||
- [Discussion 10883](https://github.com/orgs/firefly-iii/discussions/10883) (Initial balance for account is missing from exported CSV) started by @ajaskiewiczpl
|
- [Discussion 10883](https://github.com/orgs/firefly-iii/discussions/10883) (Initial balance for account is missing from exported CSV) started by @ajaskiewiczpl
|
||||||
|
- #10888
|
||||||
|
|
||||||
### API
|
### API
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user