mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-07 15:43:55 +02:00
Fixed replying of local messages with shortcuts in sections.
This commit is contained in:
parent
8f076b0c9e
commit
924780d8d8
1 changed files with 3 additions and 0 deletions
|
@ -3259,6 +3259,9 @@ void ListWidget::replyNextMessage(FullMsgId fullId, bool next) {
|
||||||
const auto reply = [&](Element *view) {
|
const auto reply = [&](Element *view) {
|
||||||
if (view) {
|
if (view) {
|
||||||
const auto newFullId = view->data()->fullId();
|
const auto newFullId = view->data()->fullId();
|
||||||
|
if (!view->data()->isRegular()) {
|
||||||
|
return replyNextMessage(newFullId, next);
|
||||||
|
}
|
||||||
replyToMessageRequestNotify(newFullId);
|
replyToMessageRequestNotify(newFullId);
|
||||||
_requestedToShowMessage.fire_copy(newFullId);
|
_requestedToShowMessage.fire_copy(newFullId);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue