callConnectionAuthenticatedListener() should call authenticated()

not connected().
This commit is contained in:
Florian Schmaus 2014-04-22 21:29:43 +02:00
parent 865168688d
commit 3de8af6865
1 changed files with 1 additions and 1 deletions

View File

@ -999,7 +999,7 @@ public abstract class XMPPConnection {
void callConnectionAuthenticatedListener() {
for (ConnectionListener listener : getConnectionListeners()) {
listener.connected(this);
listener.authenticated(this);
}
}