kythyria / msnp-sharp

Automatically exported from code.google.com/p/msnp-sharp
0 stars 0 forks source link

Participant's (in group chat) status is invalid #282

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. You'll need 3 accounts. Each account should have the other accounts in the 
it's contact list.
2. Use MSNPSharp 4 test client and 2 other MSNP compatible clients
3. Sign in with each account with a different client.
4. Start a conversation to the second contact using the test client.
5. Invite the third contact.

What is the expected output? What do you see instead?
If you try to get the participants in the group chat through 
remoteContact.ContactList[IMAddressInfoType.None], you'll see that every 
Contact appears as offline even if it's online.

Actually I added a button and a textbox in the conversation form and then I 
added this code:

private void button1_Click(object sender, EventArgs e)
        {
            foreach (KeyValuePair<string, Contact> contact in remoteContact.ContactList[IMAddressInfoType.None])
            {
                textBox1.Text += contact.Value.Name + ":" + contact.Value.Status.ToString() + Environment.NewLine;
            }
        }

What version of the product are you using? (MSNPSharp, OS, Mono etc.)
MSNPSharp 4.0.1, NET 2.0, Windows 7 x64

Is your code check out from SVN or download from our download site?
Download site

Original issue reported on code.google.com by kernel...@gmail.com on 7 Jul 2011 at 1:16

GoogleCodeExporter commented 9 years ago

Original comment by hepha...@gmail.com on 7 Jul 2011 at 2:16

GoogleCodeExporter commented 9 years ago

Original comment by freezing...@gmail.com on 7 Jul 2011 at 8:35