Fixed bug where presence packets lost due to roster being created too late.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1988 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-07-26 23:07:43 +00:00 committed by mtucker
parent e256a1d149
commit 1bee6a7e60
1 changed files with 4 additions and 3 deletions

View File

@ -309,13 +309,14 @@ public class XMPPConnection {
}
// We're done with the collector, so explicitly cancel it.
collector.cancel();
// Set presence to online.
packetWriter.sendPacket(new Presence(Presence.Type.AVAILABLE));
// Finally, create the roster.
// Create the roster.
this.roster = new Roster(this);
roster.reload();
// Set presence to online.
packetWriter.sendPacket(new Presence(Presence.Type.AVAILABLE));
// Indicate that we're now authenticated.
authenticated = true;