Don't use FLAG_ACTIVITY_SINGLE_TOP to start MessageList

We currently don't implement onNewIntent() so using
FLAG_ACTIVITY_SINGLE_TOP won't work.
This commit is contained in:
cketti 2012-11-27 00:01:51 +01:00
parent c870c5acbc
commit 689f12a7f8
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class MessageList extends K9FragmentActivity implements MessageListFragme
intent.putExtra(EXTRA_NO_THREADING, noThreading);
if (clearTop) {
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
}
if (newTask) {
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);