new dispute state is considered open

This commit is contained in:
woodser 2024-11-13 18:41:57 -05:00
parent 5f29e7e1a6
commit 111b7613c0

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() {