am 78d3c602: am b915c3c0: Merge "Skip security check when account id is unknown." into froyo

Merge commit '78d3c6022ccf87566261faf694ff506a68ec6b6f' into kraken

* commit '78d3c6022ccf87566261faf694ff506a68ec6b6f':
  Skip security check when account id is unknown.
This commit is contained in:
Andy Stadler 2010-04-28 09:43:18 -07:00 committed by Android Git Automerger
commit 656d89d67f

View File

@ -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);
}
@ -1600,7 +1600,7 @@ public class MessageList extends ListActivity implements OnItemClickListener, On
// How long we want to wait for refreshes (a good starting guess)
// I suspect this could be lowered down to even 1000 or so, but this seems ok for now
private static final long REFRESH_INTERVAL_MS = 2500;
private java.text.DateFormat mDateFormat;
private java.text.DateFormat mTimeFormat;