mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-12 06:08:25 -05:00
Fix NullPointerException
Fixes issue 2261
This commit is contained in:
parent
0c27a1ab0e
commit
b44bed2596
@ -310,6 +310,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