Merge pull request #5599 from jmacxx/fix_chatmessage_status

Fix bug in chat message status display
This commit is contained in:
Christoph Atteneder 2021-07-06 16:13:23 +02:00 committed by GitHub
commit 93df5c2849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -302,7 +302,7 @@ public final class ChatMessage extends SupportMessage {
// each chat message notifies the user if an ACK is not received in time
public void startAckTimer() {
UserThread.runAfter(() -> {
if (!this.getAcknowledgedProperty().get()) {
if (!this.getAcknowledgedProperty().get() && !this.getStoredInMailboxProperty().get()) {
this.setArrived(false);
this.setAckError(Res.get("support.errorTimeout"));
}