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
master
Greyson Parrelli 2019-02-11 16:14:27 -08:00
parent 6896f8ea15
commit 3b6429c163
1 changed files with 4 additions and 3 deletions

View File

@ -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();
}
}
}