Fix situation where search nav could get stuck.

If you navigated to the ConversationActivity again via some action (like
a shared contact invite) while searching, we don't get the toolbar close
event, and therefore the search nav would stay open. Now we just reset
it on newIntent() to be safe.
This commit is contained in:
Greyson Parrelli 2019-02-28 16:51:10 -08:00
parent 7fd6f5b3ff
commit fd862e575b

View File

@ -394,6 +394,8 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
if (fragment != null) { if (fragment != null) {
fragment.onNewIntent(); fragment.onNewIntent();
} }
searchNav.setVisibility(View.GONE);
} }
@Override @Override