Merge commit '78d3c6022ccf87566261faf694ff506a68ec6b6f' into kraken * commit '78d3c6022ccf87566261faf694ff506a68ec6b6f': Skip security check when account id is unknown.
This commit is contained in:
commit
656d89d67f
@ -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