diff options
Diffstat (limited to 'Swiften/Client/Client.cpp')
-rw-r--r-- | Swiften/Client/Client.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Swiften/Client/Client.cpp b/Swiften/Client/Client.cpp index fe9bc60..974e256 100644 --- a/Swiften/Client/Client.cpp +++ b/Swiften/Client/Client.cpp @@ -42,11 +42,6 @@ bool Client::isAvailable() { return session_ && session_->getState() == ClientSession::Initialized; } -/** FIXME: implement */ -JID Client::getBoundJID() { - return JID(); -} - void Client::connect() { connect(jid_.getDomain()); } @@ -256,6 +251,7 @@ void Client::handleStanzaAcked(boost::shared_ptr<Stanza> stanza) { } void Client::handleSessionInitialized() { + jid_ = session_->getLocalJID(); onConnected(); onAvailableChanged(true); } |