Always request a folder refresh for new accounts.

Change-Id: I396293f39b7f24ebf67e7619ce19765e1229f56b
This commit is contained in:
Yu Ping Hu 2013-05-17 12:10:10 -07:00
parent 53836e572e
commit eb23229030

View File

@ -362,14 +362,12 @@ public class AccountSetupOptions extends AccountSetupActivity implements OnClick
} }
saveAccountAndFinish(); saveAccountAndFinish();
// If we're local, update the folder list (to get our starting folders, e.g. Inbox) // Update the folder list (to get our starting folders, e.g. Inbox)
EmailServiceProxy proxy = EmailServiceUtils.getServiceForAccount(this, null, account.mId); EmailServiceProxy proxy = EmailServiceUtils.getServiceForAccount(this, null, account.mId);
if (!proxy.isRemote()) { try {
try { proxy.updateFolderList(account.mId);
proxy.updateFolderList(account.mId); } catch (RemoteException e) {
} catch (RemoteException e) { // It's all good
// It's all good
}
} }
} }