1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00
- Support for tabs in IMAP ID response (for OS X Leopard Server support)
- Author: yostinso++
This commit is contained in:
Jesse Vincent 2008-10-29 04:20:50 +00:00
parent cf6a2379a0
commit 0df7dff688

View File

@ -123,6 +123,8 @@ public class ImapResponseParser {
} else if (ch == '\n') { } else if (ch == '\n') {
expect('\n'); expect('\n');
return null; return null;
} else if (ch == '\t') {
expect('\t');
} else { } else {
return parseAtom(); return parseAtom();
} }