new dispute state is considered open

This commit is contained in:
woodser 2024-11-13 18:41:57 -05:00
parent 59d8a8ee44
commit 86e67d384c

View file

@ -467,7 +467,7 @@ public final class Dispute implements NetworkPayload, PersistablePayload {
} }
public boolean isOpen() { public boolean isOpen() {
return this.disputeState == State.OPEN || this.disputeState == State.REOPENED; return isNew() || this.disputeState == State.OPEN || this.disputeState == State.REOPENED;
} }
public boolean isClosed() { public boolean isClosed() {