mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-16 15:58:08 +00:00
dispute is pending until requested and chat disabled until acked
This commit is contained in:
parent
577cfa249e
commit
0d82f8827f
3 changed files with 7 additions and 1 deletions
|
@ -466,6 +466,10 @@ public final class Dispute implements NetworkPayload, PersistablePayload {
|
||||||
return this.disputeState == State.NEW;
|
return this.disputeState == State.NEW;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isOpen() {
|
||||||
|
return this.disputeState == State.OPEN || this.disputeState == State.REOPENED;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean isClosed() {
|
public boolean isClosed() {
|
||||||
return this.disputeState == State.CLOSED;
|
return this.disputeState == State.CLOSED;
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,7 @@ public abstract class DisputeSession extends SupportSession {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean chatIsOpen() {
|
public boolean chatIsOpen() {
|
||||||
return dispute != null && !dispute.isClosed();
|
return dispute != null && dispute.isOpen();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -1420,6 +1420,8 @@ public abstract class DisputeView extends ActivatableView<VBox, Void> implements
|
||||||
}
|
}
|
||||||
if (dispute.isClosed()) return Res.get("support.closed");
|
if (dispute.isClosed()) return Res.get("support.closed");
|
||||||
switch (trade.getDisputeState()) {
|
switch (trade.getDisputeState()) {
|
||||||
|
case NO_DISPUTE:
|
||||||
|
return Res.get("shared.pending");
|
||||||
case DISPUTE_REQUESTED:
|
case DISPUTE_REQUESTED:
|
||||||
return Res.get("support.requested");
|
return Res.get("support.requested");
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue