You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should only occur on the 2nd Friday every month and now it's repeating every Friday.
I know you have this block of code for that:
// These checks are to catch if the event is set to repeat on a particular weekday of the month (e.g., every third Sunday)if (repeatRuleByDay && ![repeatRuleByDay containsObject:[NSStringstringWithFormat:@"1%@", dayString]]) {
if (repeatRuleByDay && ![repeatRuleByDay containsObject:[NSStringstringWithFormat:@"2%@", dayString]]) {
if (repeatRuleByDay && ![repeatRuleByDay containsObject:[NSStringstringWithFormat:@"3%@", dayString]]) {
returnNO;
}
}
}
but this isn't working.
Can you help me with this?
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hi!
First of all, congrats on this parser! It's really great! However I found out that the BYDAY RRULE is not take into account. For instance, this event:
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20160311T083000
DTEND;TZID=America/Los_Angeles:20160311T103000
RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=2FR
DTSTAMP:20161018T143425Z
UID:[email protected]
CLASS:PUBLIC
CREATED:20160224T023810Z
DESCRIPTION:
LAST-MODIFIED:20160822T045008Z
LOCATION:Some Location
SEQUENCE:0
STATUS:CONFIRMED
SUMMARY: The Summary
TRANSP:OPAQUE
END:VEVENT
should only occur on the 2nd Friday every month and now it's repeating every Friday.
I know you have this block of code for that:
but this isn't working.
Can you help me with this?
Thanks in advance
The text was updated successfully, but these errors were encountered: