Loading src/com/fsck/k9/mail/store/ImapStore.java +1 −1 Original line number Diff line number Diff line Loading @@ -1103,7 +1103,7 @@ public class ImapStore extends Store { for (int windowStart = 0; windowStart <= messages.length; windowStart += (FETCH_WINDOW_SIZE)) { for (int windowStart = 0; windowStart < messages.length; windowStart += (FETCH_WINDOW_SIZE)) { List<String> uidWindow = uids.subList(windowStart, Math.min((windowStart + FETCH_WINDOW_SIZE), messages.length)); try { Loading Loading
src/com/fsck/k9/mail/store/ImapStore.java +1 −1 Original line number Diff line number Diff line Loading @@ -1103,7 +1103,7 @@ public class ImapStore extends Store { for (int windowStart = 0; windowStart <= messages.length; windowStart += (FETCH_WINDOW_SIZE)) { for (int windowStart = 0; windowStart < messages.length; windowStart += (FETCH_WINDOW_SIZE)) { List<String> uidWindow = uids.subList(windowStart, Math.min((windowStart + FETCH_WINDOW_SIZE), messages.length)); try { Loading