fix for messages with later set poll priority being preferred before others in the poll sequence
This commit is contained in:
@@ -616,7 +616,7 @@ bool Message::isLessPollWeight(const Message* other) const {
|
|||||||
if (m_pollPriority > other->m_pollPriority) {
|
if (m_pollPriority > other->m_pollPriority) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (m_pollPriority < m_pollPriority) {
|
if (m_pollPriority < other->m_pollPriority) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return m_lastPollTime > other->m_lastPollTime;
|
return m_lastPollTime > other->m_lastPollTime;
|
||||||
|
|||||||
Reference in New Issue
Block a user