diff options
Diffstat (limited to 'Swiften/Roster/XMPPRosterController.cpp')
| -rw-r--r-- | Swiften/Roster/XMPPRosterController.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Roster/XMPPRosterController.cpp b/Swiften/Roster/XMPPRosterController.cpp index 8ee9755..2b98b53 100644 --- a/Swiften/Roster/XMPPRosterController.cpp +++ b/Swiften/Roster/XMPPRosterController.cpp @@ -1,8 +1,8 @@ /* - * Copyright (c) 2010-2016 Isode Limited. + * Copyright (c) 2010-2019 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include <Swiften/Roster/XMPPRosterController.h> @@ -63,13 +63,13 @@ void XMPPRosterController::handleRosterReceived(std::shared_ptr<RosterPayload> r // The cached version hasn't changed; emit all items for (const auto& item : previousRoster->getItems()) { if (item.getSubscription() != RosterItemPayload::Remove) { xmppRoster_->addContact(item.getJID(), item.getName(), item.getGroups(), item.getSubscription()); } else { - SWIFT_LOG(error) << "Stored invalid roster item" << std::endl; + SWIFT_LOG(error) << "Stored invalid roster item"; } } } if (initial) { xmppRoster_->onInitialRosterPopulated(); } |
Swift