Skip to content
Snippets Groups Projects
Commit 7e04e442 authored by Jeremy Kersten's avatar Jeremy Kersten
Browse files

[FIX] calendar: don't read start_date(time) in read

It seems to randomly save a bad value into the cache for star_date(time) field.

For already impacted database, it can be easily fixed with a simple update.
  update calendar_event set start_datetime=start, stop_datetime=stop where allday = 'f';
  update calendar_event set start_date=start, stop_date=stop where allday = 't';

Than can cause errors for google synchro.
parent fdb2f17f
Branches
Tags
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment