1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-10-31 15:45:08 -04:00

Parse resp-text on command continuation requests

This commit is contained in:
cketti 2011-11-16 03:17:36 +01:00
parent 43f5cbb361
commit f8779095d9

View File

@ -47,8 +47,7 @@ public class ImapResponseParser {
} else if (ch == '+') { } else if (ch == '+') {
response.mCommandContinuationRequested = response.mCommandContinuationRequested =
parseCommandContinuationRequest(); parseCommandContinuationRequest();
//TODO: Add special "resp-text" parsing parseResponseText(response);
readTokens(response);
} else { } else {
response.mTag = parseTaggedResponse(); response.mTag = parseTaggedResponse();
readTokens(response); readTokens(response);