linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Linphone-developers] LinphoneChatRoom PeerAddress is not getting up


From: Yonatan Nir
Subject: Re: [Linphone-developers] LinphoneChatRoom PeerAddress is not getting updated
Date: Wed, 17 Jun 2015 07:27:28 +0000

Someone?





I'm trying to create a new LinphoneChatRoom using this code:

public void createNewChatRoom(String destination, String name)
    {
        LinphoneChatRoom[] rooms = core.getChatRooms();
        for (LinphoneChatRoom room : rooms)
        {
            Log.d("name1: " + room.getPeerAddress().getDisplayName());
        }
        LinphoneChatRoom room = core.getOrCreateChatRoom(destination);
        if (room != null)
        {
            room.getPeerAddress().setDisplayName(name);
        }
        rooms = core.getChatRooms();
        for (LinphoneChatRoom room2 : rooms)
        {
            Log.d("name2: " + room2.getPeerAddress().getDisplayName());
        }
    }

During the first iteration on the rooms (name1 iteration) all of the display names I'm getting are null. At the second iteration over the rooms (name2 iteration), There is indeed a new room that was added and the array is +1 in size, but again, all the display names are null even though I just set it.
Why is this happening?


_______________________________________________ Linphone-developers mailing list address@hidden https://lists.nongnu.org/mailman/listinfo/linphone-developers

reply via email to

[Prev in Thread] Current Thread [Next in Thread]