Updated linphone
This commit is contained in:
parent
02cf706e51
commit
c8218f00dc
3 changed files with 21 additions and 1 deletions
|
@ -697,11 +697,21 @@ public class GroupChatFragment extends Fragment implements ChatRoomListener, Con
|
|||
mEventsAdapter.addToHistory(event);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantsCapabilitiesChecked(ChatRoom cr, Address deviceAddr, Address[] participantsAddr) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantDeviceAdded(ChatRoom cr, EventLog event) {
|
||||
mEventsAdapter.addToHistory(event);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantDeviceFetched(ChatRoom cr, Address participantAddr) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStateChanged(ChatRoom cr, ChatRoom.State newState) {
|
||||
if (mChatRoom.hasBeenLeft()) {
|
||||
|
|
|
@ -321,6 +321,11 @@ public class GroupInfoFragment extends Fragment implements ChatRoomListener {
|
|||
refreshParticipantsList();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantsCapabilitiesChecked(ChatRoom cr, Address deviceAddr, Address[] participantsAddr) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantAdminStatusChanged(ChatRoom cr, EventLog event_log) {
|
||||
if (mChatRoom.getMe().isAdmin() != mIsEditionEnabled) {
|
||||
|
@ -372,6 +377,11 @@ public class GroupInfoFragment extends Fragment implements ChatRoomListener {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onParticipantDeviceFetched(ChatRoom cr, Address participantAddr) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onUndecryptableMessageReceived(ChatRoom cr, ChatMessage msg) {
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 4cdb46496e8cb4b2d548a94ce3bfa4ac86443bbd
|
||||
Subproject commit 9e5eeafc7adc15231f80fc3f1c8b951505b20019
|
Loading…
Reference in a new issue