Send proper parameter to startSync (via EmailService)

Bug: 5014063
Change-Id: If236a02e92adef06f2a9ca3779d08778915ed6e9
This commit is contained in:
Marc Blank 2011-07-14 11:59:22 -07:00
parent 53dddf3c55
commit 21913ced32

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);
}
}