blazsolar / WeekDatePicker

Lightweight week date picker implmentation for Android.
MIT License
64 stars 17 forks source link

Fix getDayForDate method #20

Open stumi01 opened 6 years ago

stumi01 commented 6 years ago

The firstDay.until(date) will give back the period which is divided by years months and days , therefore the getDays() will be never greater than |30|.

Solution: to use the firstDay.until(date,ChronoUnit.DAYS) which correctly calculated the days between the two LocalDate