Skip to content
Snippets Groups Projects
Commit 175c95c4 authored by Aline Bonnet's avatar Aline Bonnet Committed by gerrit2
Browse files

ui: fix the behavior of the call bar

When opening the conversation during a call to show the text messages,
the call bar is not displayed. This commit forces the refresh of the
conversation screen to display this bar.

Change-Id: Ifb453608dafd29f7fd42173c38b863a78fe56fa0
Tuleap: #1484
parent 22f40d1a
No related branches found
No related tags found
No related merge requests found
...@@ -57,6 +57,11 @@ public class ConversationActivity extends AppCompatActivity implements LocalServ ...@@ -57,6 +57,11 @@ public class ConversationActivity extends AppCompatActivity implements LocalServ
@Override @Override
protected void onNewIntent(Intent intent) { protected void onNewIntent(Intent intent) {
super.onNewIntent(intent); super.onNewIntent(intent);
if (intent.getBooleanExtra("resuming", false)) {
if (mConversationFragment != null) {
mConversationFragment.refreshView(0);
}
}
} }
@Override @Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment