From 9ca1bfa5c60d976efe4c5892193fa820daf7d5bd Mon Sep 17 00:00:00 2001 From: Janne Koschinski Date: Sat, 23 Sep 2017 11:29:27 +0200 Subject: [PATCH] Fix test for if the core supports activity sync --- src/client/networkmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.20.1