1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-13 14:48:04 -05:00

Minor changes to help with issue 636

This commit is contained in:
Bao-Long Nguyen-Trong 2009-09-25 21:02:25 +00:00
parent ac022ce467
commit 931cc4c243

View File

@ -395,6 +395,7 @@ public class FolderList extends K9ListActivity {
} }
else { else {
mInitialFolder = null; mInitialFolder = null;
mStartup = false;
} }
Log.v(Email.LOG_TAG, "mInitialFolder: " + mInitialFolder); Log.v(Email.LOG_TAG, "mInitialFolder: " + mInitialFolder);
@ -537,7 +538,9 @@ public class FolderList extends K9ListActivity {
// we won't have a parent activity and we'll need to get back to it // we won't have a parent activity and we'll need to get back to it
if (mStartup if (mStartup
|| isTaskRoot()) { || isTaskRoot()) {
startActivity(new Intent(this, Accounts.class)); Intent intent = new Intent(this, Accounts.class);
intent.putExtra(Accounts.EXTRA_STARTUP, false);
startActivity(intent);
} }
finish(); finish();
} }