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.
-
Offizieller Kommentar
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;
}Aktionen für Kommentare
Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.
Kommentare
1 Kommentar