Merge "Skip security check when account id is unknown." into froyo
This commit is contained in:
commit
b915c3c018
@ -1091,7 +1091,7 @@ public class MessageList extends ListActivity implements OnItemClickListener, On
|
||||
@Override
|
||||
protected Long doInBackground(Void... params) {
|
||||
// Quick check that account is not in security hold
|
||||
if (isSecurityHold(mAccountId)) {
|
||||
if (mAccountId != -1 && isSecurityHold(mAccountId)) {
|
||||
showSecurityActivity = true;
|
||||
return Long.valueOf(-1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user