am b3be4655
: Merge "Sync account immediately upon restore" into ub-gmail-ur14-dev
* commit 'b3be4655a88d2289abf355f3d41dc9a4b5a5052d': Sync account immediately upon restore
This commit is contained in:
commit
65d130ad2c
@ -1631,14 +1631,18 @@ public class EmailProvider extends ContentProvider
|
||||
// Try to restore them from saved JSON
|
||||
int restoredCount = 0;
|
||||
for (final android.accounts.Account amAccount : amAccounts) {
|
||||
String jsonString = null;
|
||||
jsonString = am.getUserData(amAccount, ACCOUNT_MANAGER_JSON_TAG);
|
||||
final String jsonString = am.getUserData(amAccount, ACCOUNT_MANAGER_JSON_TAG);
|
||||
if (TextUtils.isEmpty(jsonString)) {
|
||||
continue;
|
||||
}
|
||||
final Account account = Account.fromJsonString(jsonString);
|
||||
if (account != null) {
|
||||
AccountSettingsUtils.commitSettings(context, account);
|
||||
final Bundle extras = new Bundle(3);
|
||||
extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
|
||||
extras.putBoolean(ContentResolver.SYNC_EXTRAS_DO_NOT_RETRY, true);
|
||||
extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
|
||||
ContentResolver.requestSync(amAccount, EmailContent.AUTHORITY, extras);
|
||||
restoredCount++;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user