Don't allow replying to local messages.
This commit is contained in:
parent
096ddcad6d
commit
5fee0a7a73
|
@ -2380,7 +2380,7 @@ void HistoryInner::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
|||
};
|
||||
|
||||
const auto addReplyAction = [&](HistoryItem *item) {
|
||||
if (!item) {
|
||||
if (!item || !item->isRegular()) {
|
||||
return;
|
||||
}
|
||||
const auto canSendReply = [&] {
|
||||
|
|
Loading…
Reference in New Issue