Null check for getServiceInfo

b/11538007

Change-Id: I8b06f22373c3a389939614e9c24bbe143b6fc289
This commit is contained in:
Tony Mantler 2013-11-11 11:21:46 -08:00
parent 802bf1b4a7
commit ea0989043a
1 changed files with 11 additions and 0 deletions

View File

@ -598,6 +598,10 @@ public class AccountSettingsFragment extends PreferenceFragment
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
if (mInboxNotify == null) {
// Should only happen if we've aborted the settings screen
return;
}
mInboxNotify.setChecked(
mInboxFolderPreferences.areNotificationsEnabled());
mInboxVibrate.setChecked(
@ -626,6 +630,13 @@ public class AccountSettingsFragment extends PreferenceFragment
final String protocol = Account.getProtocol(mContext, mAccount.mId);
final EmailServiceInfo info = EmailServiceUtils.getServiceInfo(mContext, protocol);
if (info == null) {
LogUtils.e(Logging.LOG_TAG, "Could not find service info for account " + mAccount.mId
+ " with protocol " + protocol);
getActivity().onBackPressed();
// TODO: put up some sort of dialog here to tell the user something went wrong
return;
}
final android.accounts.Account androidAcct = new android.accounts.Account(
mAccount.mEmailAddress, info.accountType);