* commit '89a36e1d44249c40420a710336f7eb5fa376b722': Fix some AOSP NPEs
This commit is contained in:
commit
066c3202dc
@ -249,11 +249,11 @@ public class AccountReconciler {
|
||||
final String protocol = EmailServiceUtils.getProtocolFromAccountType(
|
||||
context, accountType);
|
||||
final EmailServiceInfo info = EmailServiceUtils.getServiceInfo(context, protocol);
|
||||
if (!info.syncCalendar) {
|
||||
if (info == null || !info.syncCalendar) {
|
||||
ContentResolver.setIsSyncable(accountManagerAccount,
|
||||
CalendarContract.AUTHORITY, 0);
|
||||
}
|
||||
if (!info.syncContacts) {
|
||||
if (info == null || !info.syncContacts) {
|
||||
ContentResolver.setIsSyncable(accountManagerAccount,
|
||||
ContactsContract.AUTHORITY, 0);
|
||||
}
|
||||
|
@ -73,7 +73,7 @@ public class AuthenticatorService extends Service {
|
||||
account, options.getString(OPTIONS_PASSWORD), null);
|
||||
|
||||
// Set up contacts syncing, if appropriate
|
||||
if (info.syncContacts) {
|
||||
if (info != null && info.syncContacts) {
|
||||
boolean syncContacts = options.getBoolean(OPTIONS_CONTACTS_SYNC_ENABLED, false);
|
||||
ContentResolver.setIsSyncable(account, ContactsContract.AUTHORITY, 1);
|
||||
ContentResolver.setSyncAutomatically(account, ContactsContract.AUTHORITY,
|
||||
@ -81,7 +81,7 @@ public class AuthenticatorService extends Service {
|
||||
}
|
||||
|
||||
// Set up calendar syncing, if appropriate
|
||||
if (info.syncCalendar) {
|
||||
if (info != null && info.syncCalendar) {
|
||||
boolean syncCalendar = options.getBoolean(OPTIONS_CALENDAR_SYNC_ENABLED, false);
|
||||
ContentResolver.setIsSyncable(account, CalendarContract.AUTHORITY, 1);
|
||||
ContentResolver.setSyncAutomatically(account, CalendarContract.AUTHORITY,
|
||||
|
Loading…
Reference in New Issue
Block a user