-
-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong recurrence handling #212
Labels
Comments
u01jmg3
added a commit
that referenced
this issue
Apr 2, 2019
u01jmg3
added a commit
that referenced
this issue
Apr 2, 2019
|
@arzzcom: are you able to test the code I have written to fix this issue? |
@u01jmg3 Sorry! I'm late. I'll test now. :) |
@u01jmg3 It works! Thanks. |
Thanks for testing, will look at |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RRULE is FREQ=MONTHLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=1
It means every month's first day but not the weekend (SU, SA).
2019-05-01 is Wednesday so this rule refers to 2019-05-01.
2019-06-01 is Saturday so this rule refers to 2019-06-03.
However, this rule refers to every Monday of each month.
And
RRULE is FREQ=MONTHLY;INTERVAL=1;BYDAY=SU,MO,TU,WE,TH,FR,SA;BYSETPOS=-1
It means every month's last day like this 2019-04-30, 2019-05-31.
However, this rule refers to the last Saturday of each month.
The text was updated successfully, but these errors were encountered: