From: Janne Koschinski Date: Sat, 23 Sep 2017 09:29:27 +0000 (+0200) Subject: Fix test for if the core supports activity sync X-Git-Tag: travis-deploy-test~235 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=9ca1bfa5c60d976efe4c5892193fa820daf7d5bd Fix test for if the core supports activity sync --- diff --git a/src/client/networkmodel.cpp b/src/client/networkmodel.cpp index 526781f1..1a239a8b 100644 --- a/src/client/networkmodel.cpp +++ b/src/client/networkmodel.cpp @@ -339,7 +339,7 @@ void BufferItem::updateActivityLevel(const Message &msg) Message::Types type; // If the core handles activities, ignore types - if (!Client::coreFeatures().testFlag(Quassel::Feature::BufferActivitySync)) { + if (Client::coreFeatures().testFlag(Quassel::Feature::BufferActivitySync)) { type = Message::Types(); } else { type = msg.type();