Avoid NPE at onRefresh in MessageList
BUG: 2161449
This commit is contained in:
parent
4f81086e34
commit
e90b74aa04
@ -527,9 +527,11 @@ public class MessageList extends ListActivity implements OnItemClickListener, On
|
||||
// TODO: Should not be reading from DB in UI thread - need a cleaner way to get accountId
|
||||
if (mMailboxId >= 0) {
|
||||
Mailbox mailbox = Mailbox.restoreMailboxWithId(this, mMailboxId);
|
||||
if (mailbox != null) {
|
||||
mController.updateMailbox(mailbox.mAccountKey, mMailboxId, mControllerCallback);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void onFolders() {
|
||||
if (mMailboxId >= 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user