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

adapt broken pop3 server

This commit is contained in:
Koji Arai 2013-06-26 23:57:55 +09:00
parent 06ae2a071b
commit 35c79a5656

View File

@ -642,7 +642,7 @@ public class Pop3Store extends Store {
if (response.equals(".")) { if (response.equals(".")) {
break; break;
} }
String[] uidParts = response.split(" "); String[] uidParts = response.split(" +");
// Ignore messages without a unique-id // Ignore messages without a unique-id
if (uidParts.length >= 2) { if (uidParts.length >= 2) {