getActiveParticipantsAsContactList is not providing correct result
getParticipantsAsContactList is replaced by
getActiveParticipantsAsContactList in sdk
'com.ale:rainbowsdk:1.63.0'. getActiveParticipantsAsContactList is not providing right result .All participants are not getting by this method.
-
Comentário oficial
Hi,
This will be fixed in the SDK 1.67. For a temporary solution you can use this :
public List<IRainbowContact> getAllParticipantsAsContactList() {
List<IRainbowContact> parts = new ArrayList<>();
for(RoomParticipant part : m_room.getParticipants().getCopyOfDataList()) {
parts.add(part.getContact());
}
return parts;
}Ações de comentário
Por favor, entrar para comentar.
Comentários
1 comentário