Merge "Send proper parameter to startSync (via EmailService)"

This commit is contained in:
Marc Blank 2011-07-14 16:14:19 -07:00 committed by Android (Google) Code Review
commit 68ce7f3d60
1 changed files with 2 additions and 2 deletions

View File

@ -606,7 +606,7 @@ class UIControllerTwoPane extends UIControllerBase implements ThreePaneLayout.Ca
return;
}
if (isCurrentMailboxRefreshable) {
mRefreshManager.refreshMessageList(mAccountId, mMailboxId, false);
mRefreshManager.refreshMessageList(mAccountId, mMailboxId, true);
}
// Refresh mailbox list
if (mAccountId != Account.NO_ACCOUNT) {
@ -616,7 +616,7 @@ class UIControllerTwoPane extends UIControllerBase implements ThreePaneLayout.Ca
}
// Refresh inbox
if (shouldAutoRefreshInbox()) {
mRefreshManager.refreshMessageList(mAccountId, mInboxId, false);
mRefreshManager.refreshMessageList(mAccountId, mInboxId, true);
}
}