-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
DTEND should be non-inclusive #15
Comments
I don't have time to look at this now, but if you provide a PR, I'm happy to consider merging |
I understand. Luckily, this precision is not a must-have for the app I'm working on, but for someone it might be quite a problem, so I decided to at least report it. |
Gives the user more control as to what arrays are returned. The benefit is that it allows filtering during iteration which is memory friendly. Possible related issue: - mifi#15
My current workaround is to shrink the requested range by 1 millisecond from each end. |
Hello,
I have discovered the bug in this library at the latest version 2.1. According to the RFC at 3.6.1:
So for example, in this calendar:
When you make a selection, that includes only the DTEND, it shouldn't contain any event or occurrences, but it does. DTEND + 1 works as expected and no event is returned.
This code will return
true
, but it should returnfalse
.The text was updated successfully, but these errors were encountered: