Skip to content

Commit

Permalink
Fixed reminders recurrency when choosing non-custom RRULE format
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Dec 12, 2019
1 parent 8b1eece commit bf2b2cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static String buildRecurrenceRuleByRecurrenceOptionAndRule (RecurrenceOpt
String recurrenceRule) {
if (recurrenceRule == null && recurrenceOption != DOES_NOT_REPEAT) {
Frequency freq = Frequency.valueOf(recurrenceOption.toString());
Recur recur = new Recur(freq, new DateTime());
Recur recur = new Recur(freq, new DateTime(32519731800000L));
return new RRule(recur).toString().replace("RRULE:", "");
}
return recurrenceRule;
Expand Down

0 comments on commit bf2b2cb

Please sign in to comment.