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:
parent
ac022ce467
commit
931cc4c243
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user