diff --git a/assets/js/http/booking_http_client.js b/assets/js/http/booking_http_client.js index 61fd1a1b..d2ed9d0d 100755 --- a/assets/js/http/booking_http_client.js +++ b/assets/js/http/booking_http_client.js @@ -284,7 +284,7 @@ App.Http.Booking = (function () { while (startOfMonthMoment.isSameOrBefore(endOfMonthMoment)) { unavailableDates.push(startOfMonthMoment.format('YYYY-MM-DD')); - startOfMonthMoment.add(monthChangeStep, 'days'); // Move to the next day + startOfMonthMoment.add(Math.abs(monthChangeStep), 'days'); // Move to the next day } applyUnavailableDates(unavailableDates, searchedMonthStart, true);