Skip to content

Commit

Permalink
fix(recurring_booking): start count at 1
Browse files Browse the repository at this point in the history
  • Loading branch information
albertms10 committed Dec 24, 2021
1 parent b0e346e commit f6e6b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/model/booking/recurring_booking.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class RecurringBooking extends Booking {
var runDate = date!;
var movedBooking = asBooking();

var count = 0;
var count = 1;

while (runDate.isBefore(recurringEndDate)) {
runBookings.add(
Expand Down

0 comments on commit f6e6b6f

Please sign in to comment.