From: Marcus Eggenberger Date: Thu, 27 Mar 2008 19:20:25 +0000 (+0000) Subject: fixed BR #129 (backlog messages not being checked for highlights) X-Git-Tag: 0.2.0-alpha5~56 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=38ad887299d6a2b57fbce28f0c674bebe159c244 fixed BR #129 (backlog messages not being checked for highlights) --- diff --git a/src/client/client.cpp b/src/client/client.cpp index 1f2a1517..7d4aeff4 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -509,6 +509,7 @@ void Client::receiveBacklog(BufferId bufferId, const QVariantList &msgs) { Message msg; while(msgIter != msgIterEnd) { msg = (*msgIter).value(); + checkForHighlight(msg); buffer_->prependMsg(msg); msgIter++; } diff --git a/version.inc b/version.inc index 7b90fb77..9668a27e 100644 --- a/version.inc +++ b/version.inc @@ -5,7 +5,7 @@ quasselVersion = "0.2.0-alpha4-pre"; quasselDate = "2008-03-27"; - quasselBuild = 660; + quasselBuild = 661; //! Minimum client build number the core needs clientBuildNeeded = 642;