mirror of https://github.com/procxx/kepka.git
Fix crash in scheduled messages 'Send Now'.
This commit is contained in:
parent
90b955534a
commit
c1ab1acd44
|
@ -750,7 +750,7 @@ bool HistoryMessage::allowsForward() const {
|
|||
}
|
||||
|
||||
bool HistoryMessage::allowsSendNow() const {
|
||||
return isScheduled();
|
||||
return isScheduled() && !isSending() && !hasFailed();
|
||||
}
|
||||
|
||||
bool HistoryMessage::isTooOldForEdit(TimeId now) const {
|
||||
|
|
Loading…
Reference in New Issue