diff options
Diffstat (limited to 'Swift/Controllers/RosterController.cpp')
-rw-r--r-- | Swift/Controllers/RosterController.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Swift/Controllers/RosterController.cpp b/Swift/Controllers/RosterController.cpp index 96056ca..48a3aa9 100644 --- a/Swift/Controllers/RosterController.cpp +++ b/Swift/Controllers/RosterController.cpp @@ -146,6 +146,10 @@ void RosterController::handleOnJIDUpdated(const JID& jid, const String& oldName, roster_->removeContactFromGroup(jid, group); } } + Presence::ref presence(presenceOracle_->getHighestPriorityPresence(jid)); + if (presence) { + roster_->applyOnItems(SetPresence(presence)); + } } void RosterController::handleUIEvent(boost::shared_ptr<UIEvent> event) { |