1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 17:18:50 -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 {
mInitialFolder = null;
mStartup = false;
}
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
if (mStartup
|| isTaskRoot()) {
startActivity(new Intent(this, Accounts.class));
Intent intent = new Intent(this, Accounts.class);
intent.putExtra(Accounts.EXTRA_STARTUP, false);
startActivity(intent);
}
finish();
}