Fix message notification action
This commit is contained in:
parent
781f3a8da4
commit
3a15500f1c
1 changed files with 5 additions and 1 deletions
|
@ -697,7 +697,11 @@ public class LinphoneActivity extends LinphoneGenericActivity implements OnClick
|
|||
extras.putString("ThumbnailUri", thumbnailUri);
|
||||
}
|
||||
|
||||
changeCurrentFragment(FragmentsAvailable.CREATE_CHAT, extras);
|
||||
if (sipUri == null) {
|
||||
changeCurrentFragment(FragmentsAvailable.CREATE_CHAT, extras);
|
||||
} else {
|
||||
changeCurrentFragment(FragmentsAvailable.GROUP_CHAT, extras);
|
||||
}
|
||||
}
|
||||
|
||||
public void goToChatCreator(String address, ArrayList<ContactAddress> selectedContacts, String subject, boolean isGoBack, Bundle shareInfos) {
|
||||
|
|
Loading…
Reference in a new issue