Don't unnecessarily stop the ShareActivity in onPause.

1. Due to ShareActivity having noHistory=true, it will already be
ditched when you leave the activity.
2. We only need to truly finish() here if we've dropped the underlying
media.

Fixes #8591
pull/1/head
Greyson Parrelli 6 years ago
parent 6896f8ea15
commit 3b6429c163

@ -133,9 +133,10 @@ public class ShareActivity extends PassphraseRequiredActionBarActivity
super.onPause();
if (!isPassingAlongMedia && resolvedExtra != null) {
PersistentBlobProvider.getInstance(this).delete(this, resolvedExtra);
}
if (!isFinishing()) {
finish();
if (!isFinishing()) {
finish();
}
}
}

Loading…
Cancel
Save