Improved mbox cr/lf processing

This commit is contained in:
M66B 2021-04-17 19:11:07 +02:00
parent d48fb6b89a
commit 1973202ec3
1 changed files with 5 additions and 2 deletions

View File

@ -920,9 +920,12 @@ public class FragmentFolders extends FragmentBase {
else
cr = true;
} else if (b == 10) {
if (lf)
if (cr)
line();
else
else if (lf) {
line();
lf = true;
} else
lf = true;
} else {
if (cr || lf)