diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-11-09 22:17:09 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-11-09 22:17:09 +0100 |
commit | b095859a928a29bcb738dd820fb13dd57495c8d0 (patch) | |
tree | b1af2c528e19fe7b3647d3ed170fc83c8fed4cdb /apps/calendar/lib/object.php | |
parent | c65e4176662aa989e1444c3c584a9d7846469262 (diff) | |
download | nextcloud-server-b095859a928a29bcb738dd820fb13dd57495c8d0.tar.gz nextcloud-server-b095859a928a29bcb738dd820fb13dd57495c8d0.zip |
Use Last-Modified property to check for changed events
Diffstat (limited to 'apps/calendar/lib/object.php')
-rw-r--r-- | apps/calendar/lib/object.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/calendar/lib/object.php b/apps/calendar/lib/object.php index 9a343a23764..221df2b3af0 100644 --- a/apps/calendar/lib/object.php +++ b/apps/calendar/lib/object.php @@ -307,6 +307,7 @@ class OC_Calendar_Object{ */ public static function parse($data){ try { + Sabre_VObject_Reader::$elementMap['LAST-MODIFIED'] = 'Sabre_VObject_Element_DateTime'; $calendar = Sabre_VObject_Reader::read($data); return $calendar; } catch (Exception $e) { |