Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 689f12a7 authored by cketti's avatar cketti
Browse files

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.
parent c870c5ac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);