1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-13 07:04:49 +02:00

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

View file

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