mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 18:41:08 +00:00
Code cleanup should trigger scan.
This commit is contained in:
@@ -117,7 +117,6 @@ class RecurrenceController extends Controller
|
|||||||
if ('times' !== $endsAt && 'until_date' !== $endsAt) {
|
if ('times' !== $endsAt && 'until_date' !== $endsAt) {
|
||||||
// 'forever'
|
// 'forever'
|
||||||
$occurrences = $this->recurring->getOccurrencesInRange($repetition, $actualStart, $actualEnd);
|
$occurrences = $this->recurring->getOccurrencesInRange($repetition, $actualStart, $actualEnd);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @var Carbon $current */
|
/** @var Carbon $current */
|
||||||
|
@@ -374,7 +374,6 @@ trait RecurringTransactionTrait
|
|||||||
$transaction->recurrenceTransactionMeta()->delete();
|
$transaction->recurrenceTransactionMeta()->delete();
|
||||||
|
|
||||||
$transaction->delete();
|
$transaction->delete();
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -153,9 +153,7 @@ class CategoryUpdateService
|
|||||||
if ('' === $note) {
|
if ('' === $note) {
|
||||||
$dbNote = $category->notes()->first();
|
$dbNote = $category->notes()->first();
|
||||||
if (null !== $dbNote) {
|
if (null !== $dbNote) {
|
||||||
|
|
||||||
$dbNote->delete();
|
$dbNote->delete();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user