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

Commit a197ca0d authored by Jochen Sprickerhof's avatar Jochen Sprickerhof
Browse files

Fix VEVENT end detection

parent c4c62b69
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);