Don't bother handling an intent if we're finishing anyway

This commit is contained in:
Philip Whitehouse 2017-01-04 00:58:46 +00:00 committed by cketti
parent 55e7484bf2
commit b77dfa0004

View file

@ -241,6 +241,10 @@ public class MessageList extends K9Activity implements MessageListFragmentListen
public void onNewIntent(Intent intent) {
super.onNewIntent(intent);
if (isFinishing()) {
return;
}
setIntent(intent);
if (mFirstBackStackId >= 0) {