Fixed back button in group chat infos on already created group
This commit is contained in:
parent
2f8b9b0c36
commit
cdc6040451
1 changed files with 5 additions and 1 deletions
|
@ -86,7 +86,11 @@ public class GroupInfoFragment extends Fragment {
|
|||
mBackButton.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
LinphoneActivity.instance().goToChatCreator(mParticipants, true);
|
||||
if (mIsAlreadyCreatedGroup) {
|
||||
getFragmentManager().popBackStack();
|
||||
} else {
|
||||
LinphoneActivity.instance().goToChatCreator(mParticipants, true);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue