X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresession.cpp;h=d7a330a0f53c2c5eebe6608765e96933217f12ba;hp=9b1395bb47032f8e970837dd4b61c89d4f70a597;hb=76d18ce4c66f5e654a3743811e426e8b48d230ca;hpb=fd25e92f19d6afd4eb02844bcbf20ba132868303 diff --git a/src/core/coresession.cpp b/src/core/coresession.cpp index 9b1395bb..d7a330a0 100644 --- a/src/core/coresession.cpp +++ b/src/core/coresession.cpp @@ -350,7 +350,7 @@ void CoreSession::processMessages() // recheck if there exists a buffer to store a redirected message in for (int i = 0; i < redirectedMessages.count(); i++) { - const RawMessage &rawMsg = _messageQueue.at(i); + const RawMessage &rawMsg = redirectedMessages.at(i); if (bufferInfoCache.contains(rawMsg.networkId) && bufferInfoCache[rawMsg.networkId].contains(rawMsg.target)) { bufferInfo = bufferInfoCache[rawMsg.networkId][rawMsg.target]; }