Don't bother handling an intent if we're finishing anyway
This commit is contained in:
parent
55e7484bf2
commit
b77dfa0004
1 changed files with 4 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue