mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-14 21:45:14 -05:00
Fix NullPointerException
Fixes issue 2261
This commit is contained in:
parent
6acb8e58af
commit
e05ff59703
@ -306,6 +306,13 @@ public class FolderList extends K9ListActivity
|
||||
String accountUuid = intent.getStringExtra(EXTRA_ACCOUNT);
|
||||
mAccount = Preferences.getPreferences(this).getAccount(accountUuid);
|
||||
|
||||
if (mAccount == null)
|
||||
{
|
||||
// This shouldn't normally happen. But apparently it does. See issue 2261.
|
||||
finish();
|
||||
return;
|
||||
}
|
||||
|
||||
initialFolder = intent.getStringExtra(EXTRA_INITIAL_FOLDER);
|
||||
boolean fromNotification = intent.getBooleanExtra(EXTRA_FROM_NOTIFICATION, false);
|
||||
if (fromNotification && mAccount.goToUnreadMessageSearch())
|
||||
|
Loading…
Reference in New Issue
Block a user