diff options
Diffstat (limited to 'Swiften/Roster/SetPresence.h')
| -rw-r--r-- | Swiften/Roster/SetPresence.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Roster/SetPresence.h b/Swiften/Roster/SetPresence.h index 134a63d..9bbf326 100644 --- a/Swiften/Roster/SetPresence.h +++ b/Swiften/Roster/SetPresence.h @@ -17,7 +17,7 @@ class RosterItem;  class SetPresence : public RosterItemOperation {  	public: -		SetPresence(boost::shared_ptr<Presence> presence, JID::CompareType compareType = JID::WithoutResource) : RosterItemOperation(true, presence->getFrom().toBare()), presence_(presence), compareType_(compareType) { +		SetPresence(boost::shared_ptr<Presence> presence, JID::CompareType compareType = JID::WithoutResource) : RosterItemOperation(true, compareType == JID::WithoutResource ? presence->getFrom().toBare() : presence->getFrom()), presence_(presence), compareType_(compareType) {  		}  		virtual void operator() (RosterItem* item) const {  | 
 Swift