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
There seems to be an issue when we try to use a multiday from saturday to sunday. The source-code says
while (start.getDay() < endDay) {
which does nothing when endDay is a sunday - endDay will be 0 and thus the loop will never be performed, because none of the other days is more less than 0.
The text was updated successfully, but these errors were encountered:
There seems to be an issue when we try to use a multiday from saturday to sunday. The source-code says
while (start.getDay() < endDay) {
which does nothing when endDay is a sunday - endDay will be 0 and thus the loop will never be performed, because none of the other days is more less than 0.
The text was updated successfully, but these errors were encountered: