-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add to calendar: Incorrect end date for activities spanning whole day(s) #1083
Comments
@stickyPiston can koala distinguish activities lasting whole days from activities lasting until a specific point in time? If so, this is a better alternative than setting the end-time to 23:59, when dealing with activities with no specific times. This is an example of how I would expect such events to be present in the calendar: This can be achieved by changing the dates field to have UTC dates without time (so |
Hmm... that's interesting. Koala saves the start and end time separately and either or both can be nil. So for the case that both are nil I see no problem, though we might need to test to see if it handles the case that only one is nil (or disregard that situation altogether) |
This was closed by #1084 |
Current Behaviour
When clicking on the link to add an activity to your calendar, (and when the activity spans over multiple days,) and when no specific end time is specified for the final day (assuming koala stored the activity as lasting the whole day), the timestamp filled in your agenda is 00:00 on the start of the final day.
The consequence is, that when an activity is from 1-3 Jan, but no end time is specified (just 3 Jan), then the agenda displays the activity only on 1-2 Jan, as it ends at 3 Jan 0:00.
Expected Behaviour
The timestamp of 3 Jan is 23:59, or even better, the calendar knows 'whole days' are specified and no timestamps have to be supplied.
Notes
I believe the bug is that we specify no timestamp, but also not that the activity spans over whole days - without specific timestamps.
This bug might also influence activities which do not span over multiple days, but just do not have a specific end time
The text was updated successfully, but these errors were encountered: