mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Merge pull request #5599 from jmacxx/fix_chatmessage_status
Fix bug in chat message status display
This commit is contained in:
commit
93df5c2849
@ -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"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user