Updated linphone to fix issues with actions made in messageReceived callback
This commit is contained in:
parent
a3b3e09b78
commit
d214e10c1f
3 changed files with 11 additions and 1 deletions
|
@ -719,6 +719,11 @@ public class GroupChatFragment extends Fragment implements ChatRoomListener, Con
|
||||||
mEventsAdapter.addToHistory(event);
|
mEventsAdapter.addToHistory(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onChatMessageShouldBeStored(ChatRoom cr, ChatMessage msg) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onParticipantsCapabilitiesChecked(ChatRoom cr, Address deviceAddr, Address[] participantsAddr) {
|
public void onParticipantsCapabilitiesChecked(ChatRoom cr, Address deviceAddr, Address[] participantsAddr) {
|
||||||
|
|
||||||
|
|
|
@ -321,6 +321,11 @@ public class GroupInfoFragment extends Fragment implements ChatRoomListener {
|
||||||
refreshParticipantsList();
|
refreshParticipantsList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onChatMessageShouldBeStored(ChatRoom cr, ChatMessage msg) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onParticipantsCapabilitiesChecked(ChatRoom cr, Address deviceAddr, Address[] participantsAddr) {
|
public void onParticipantsCapabilitiesChecked(ChatRoom cr, Address deviceAddr, Address[] participantsAddr) {
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 78f40ae222f8e71a006040b83b00f20e2dca1154
|
Subproject commit b5b6ef454533557a5df6667c26643d0be9d9140a
|
Loading…
Reference in a new issue