Fixed replying of local messages with shortcuts in sections.

This commit is contained in:
23rd 2022-06-04 15:25:53 +03:00
parent 8f076b0c9e
commit 924780d8d8
1 changed files with 3 additions and 0 deletions

View File

@ -3259,6 +3259,9 @@ void ListWidget::replyNextMessage(FullMsgId fullId, bool next) {
const auto reply = [&](Element *view) {
if (view) {
const auto newFullId = view->data()->fullId();
if (!view->data()->isRegular()) {
return replyNextMessage(newFullId, next);
}
replyToMessageRequestNotify(newFullId);
_requestedToShowMessage.fire_copy(newFullId);
} else {