1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Fixes Issue 1643

Enhance K-9 Mail to be more tolerant of non-compliant IMAP servers.
Do not require a space following the + in command continuation
requests.  The rest of the token parser will swalow the space if it is
actually there but we don't really need it.
This commit is contained in:
Daniel Applebaum 2010-05-22 20:52:01 +00:00
parent 8eeebc593a
commit 5e3e204a4c

View File

@ -182,7 +182,6 @@ public class ImapResponseParser
private boolean parseCommandContinuationRequest() throws IOException
{
expect('+');
expect(' ');
return true;
}