You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if adjustedRange.upperBound > lastAvailableRange.lowerBound {
Here, you're checking "lastAvailableRange.lowerBound" but you're using just after "lastAvailableRange.upperBound"
need to change to check the lastAvailableRange.upperBound ?
if adjustedRange.upperBound > lastAvailableRange.lowerBound {
let availableRange = adjustedRange.upperBound...lastAvailableRange.upperBound
...
}
Thanks !
The text was updated successfully, but these errors were encountered:
JZCalendarWeekView/JZCalendarWeekView/JZWeekViewFlowLayout.swift
Line 588 in 6177be0
Here, you're checking "lastAvailableRange.lowerBound" but you're using just after "lastAvailableRange.upperBound"
need to change to check the lastAvailableRange.upperBound ?
if adjustedRange.upperBound > lastAvailableRange.lowerBound {
let availableRange = adjustedRange.upperBound...lastAvailableRange.upperBound
...
}
Thanks !
The text was updated successfully, but these errors were encountered: