Auto commit for release 'develop' on 2024-07-08

This commit is contained in:
github-actions
2024-07-08 05:07:00 +02:00
parent 84a1a876e1
commit c2269fc9a4
9 changed files with 113 additions and 104 deletions

View File

@@ -81,7 +81,7 @@ class RecurrenceController extends Controller
$skip = $skip < 0 || $skip > 31 ? 0 : $skip;
$weekend = $weekend < 1 || $weekend > 4 ? 1 : $weekend;
if(null === $endDate) {
if (null === $endDate) {
// safety catch:
$endDate = now()->addYear();
}

View File

@@ -85,7 +85,6 @@ class ShowController extends Controller
$array = $transformer->transform($recurrence);
$groups = $this->recurring->getTransactions($recurrence);
$today = today(config('app.timezone'));
$array['repeat_until'] = null !== $array['repeat_until'] ? new Carbon($array['repeat_until']) : null;