Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit cdb27868 authored by Gitsaibot's avatar Gitsaibot Committed by GitHub
Browse files

Merge pull request #585 from jspricke/fix_end_vevent

Fix VEVENT end detection
parents 31510ca2 a197ca0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -200,7 +200,7 @@ public class VEvent {
            String line = iter.next();
            if (line.contains("BEGIN:VEVENT")) {
                // Continue
            } else if (line.startsWith("END:EVENT")) {
            } else if (line.startsWith("END:VEVENT")) {
                break;
            } else if (line.startsWith("ORGANIZER")) {
                String entry = parseTillNextAttribute(iter, line);