Top

getActiveParticipantsAsContactList is not providing correct result

Comments

1 comment

  • Official comment
    Jérôme Gully

    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;
    }

     

    Comment actions Permalink

Please sign in to leave a comment.

Still can't find what you need?

  • Contact Us

    Do you have any question about Rainbow? Leave us a message to get more information.

    Contact
  • Ask the Community

    Do you need help? Ask your questions to the Community and get answers from other Rainbow users.

    Post message