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

now that we have more messages coming out of the database faster,

there's less use in special-casing the first 5
This commit is contained in:
Jesse Vincent 2009-12-18 02:34:50 +00:00
parent c3e903942d
commit dc543fa9e3

View File

@ -592,8 +592,7 @@ public class MessagingController implements Runnable
if (isMessageSuppressed(account, folder, message) == false) {
pendingMessages.add(message);
totalDone++;
if (totalDone < 5 || pendingMessages.size() > 4)
{
if (pendingMessages.size() > 10) {
callbackPending();
}