1
0
mirror of https://github.com/moparisthebest/davmail synced 2025-01-13 06:28:19 -05:00

Caldav: add CRLF after END:VCALENDAR to comply with RFC

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1045 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-05-13 12:36:45 +00:00
parent 42023dd69a
commit 358a9fed91

View File

@ -49,9 +49,7 @@ public class ICSBufferedWriter {
writeLine(line.substring(75)); writeLine(line.substring(75));
} else { } else {
buffer.append(line); buffer.append(line);
if (!"END:VCALENDAR".equals(line)) { newLine();
newLine();
}
} }
} }