(js) Fix saving monthly BYDAY recurrence

Fixes #3948
pull/14/merge
Francis Lachapelle 2016-12-19 09:51:09 -05:00
parent 93f559a0df
commit e739ed46a3
2 changed files with 3 additions and 1 deletions

1
NEWS
View File

@ -19,6 +19,7 @@ Bug fixes
- [web] use the organizer's alarm by default when accepting IMIP messages (#3934)
- [web] switch on "Remember username" when cookie username is set
- [web] return login page for unknown users (#2135)
- [web] fixed saving monthly recurrence rule with "by day" condition (#3948)
- [eas] properly skip folders we don't want to synchronize (#3943)
- [eas] fixed 30 mins freebusy offset with S Planner

View File

@ -641,7 +641,8 @@
(this.repeat.interval > 1 ||
this.repeat.days && this.repeat.days.length > 0 ||
this.repeat.monthdays && this.repeat.monthdays.length > 0 ||
this.repeat.months && this.repeat.months.length > 0);
this.repeat.months && this.repeat.months.length > 0 ||
this.repeat.month && this.repeat.month.day);
return b;
};