mirror of
https://github.com/moparisthebest/davmail
synced 2025-03-01 01:41:52 -05:00
Caldav: fix request parser regression on nextTag
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1398 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
d87f3279c6
commit
36e868a97e
@ -1425,7 +1425,7 @@ public class CaldavConnection extends AbstractConnection {
|
||||
|
||||
public void handleCompFilter(XMLStreamReader reader) throws XMLStreamException {
|
||||
while (reader.hasNext() && !isEndTag(reader, "comp-filter")) {
|
||||
reader.nextTag();
|
||||
reader.next();
|
||||
if (XMLStreamUtil.isStartTag(reader, "comp-filter")) {
|
||||
String name = reader.getAttributeValue(null, "name");
|
||||
if ("VEVENT".equals(name)) {
|
||||
@ -1442,7 +1442,7 @@ public class CaldavConnection extends AbstractConnection {
|
||||
|
||||
public void handleProp(XMLStreamReader reader) throws XMLStreamException {
|
||||
while (reader.hasNext() && !isEndTag(reader, "prop")) {
|
||||
reader.nextTag();
|
||||
reader.next();
|
||||
if (XMLStreamUtil.isStartTag(reader)) {
|
||||
String tagLocalName = reader.getLocalName();
|
||||
String tagText = null;
|
||||
|
Loading…
x
Reference in New Issue
Block a user