Skip onNewIntent if activity is finishing

We didn't call through to onCreate(), so everything isn't setup.

Fixes #2971
// FREEBIE
master
Moxie Marlinspike 2016-01-30 15:33:47 -08:00
parent 4a261bcf68
commit 31224014cc
1 changed files with 5 additions and 0 deletions

View File

@ -245,6 +245,11 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
@Override
protected void onNewIntent(Intent intent) {
Log.w(TAG, "onNewIntent()");
if (isFinishing()) {
Log.w(TAG, "Activity is finishing...");
return;
}
if (!Util.isEmpty(composeText) || attachmentManager.isAttachmentPresent()) {
saveDraft();