From 6719ba1d132f50c74ff73d75bac146e0d69335be Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Tue, 12 Sep 2017 22:52:42 +0200 Subject: [PATCH] fix ICS DTSTOP=>DTEND --- build/service/CalendarExtractor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/service/CalendarExtractor.php b/build/service/CalendarExtractor.php index 7b6b490..ff016da 100644 --- a/build/service/CalendarExtractor.php +++ b/build/service/CalendarExtractor.php @@ -287,7 +287,7 @@ foreach($events as $start_t=>$stop_t){ $RAW .= "BEGIN:VEVENT\n"; $RAW .= "DTSTART:$start_t\n"; - $RAW .= "DTSTOP:$stop_t\n"; + $RAW .= "DTEND:$stop_t\n"; $RAW .= "SUMMARY:$type\n"; $RAW .= "END:VEVENT\n\n"; }