(js) Fix saving monthly BYDAY recurrence

Fixes #3948
This commit is contained in:
Francis Lachapelle
2016-12-19 09:51:09 -05:00
parent 93f559a0df
commit e739ed46a3
2 changed files with 3 additions and 1 deletions
@@ -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;
};