am d493ba25
: Merge change Ie90b74aa into eclair
Merge commit 'd493ba257a1632a8de578e06a7df7ed311227887' into eclair-mr2 * commit 'd493ba257a1632a8de578e06a7df7ed311227887': Avoid NPE at onRefresh in MessageList
This commit is contained in:
commit
c5abc6d636
@ -527,7 +527,9 @@ 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);
|
||||
mController.updateMailbox(mailbox.mAccountKey, mMailboxId, mControllerCallback);
|
||||
if (mailbox != null) {
|
||||
mController.updateMailbox(mailbox.mAccountKey, mMailboxId, mControllerCallback);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user