From dd86cdfec629f9131503704af56deb4052e30464 Mon Sep 17 00:00:00 2001 From: Daniel Applebaum Date: Mon, 7 Jun 2010 15:55:14 +0000 Subject: [PATCH] Fixes Issue 1732 Initialize mDisplayCount to a valid value. --- src/com/fsck/k9/Account.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/Account.java b/src/com/fsck/k9/Account.java index c43c2d333..346c5bccf 100644 --- a/src/com/fsck/k9/Account.java +++ b/src/com/fsck/k9/Account.java @@ -124,7 +124,7 @@ public class Account implements BaseAccount mIdleRefreshMinutes = 24; mSaveAllHeaders = false; mPushPollOnConnect = true; - mDisplayCount = -1; + mDisplayCount = K9.DEFAULT_VISIBLE_LIMIT; mAccountNumber = -1; mNotifyNewMail = true; mNotifySync = true;