Don't early out after replacing a timeout message.

Otherwise, this could lead us to not gray out messages after the timeout we're stacking on

Work on #1157
This commit is contained in:
Rasmus Karlsson 2019-07-28 13:18:32 +02:00
parent 4a5a7c84fc
commit ba1a56c3b7

View file

@ -146,7 +146,8 @@ void Channel::addOrReplaceTimeout(MessagePtr message)
this->replaceMessage(s, replacement.release());
return;
addMessage = false;
break;
}
}