Comment 1 for bug 1622784

Revision history for this message
Ron Mevissen (ronmevissen) wrote :

In my case it doesn't show any upcoming events. Here's my two cents after taking a quick peek at the code:

- Too many events get filtered out by the events_list.set_filter_func ((row) in AgendaView.vala
- Explanation: the stripped_time method is called with a wrongly converted date (I'm in a GMT+8 timezone and the stripped date becomes the next day)
- stripped_time should probably be called with the selected date (which is in local format)
- the stripped_time method should create a new local datetime object using only the year, month and day. Then everything seems to work fine.
- it might be worthwhile to review the whole app for the consistent usage of local DateTime objects (or UTC DateTime objects whatever is preferred but not mix them)