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.
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.