Skip to content

Commit b4b8512

Browse files
committed
[BUG FIX] Program was reporting as misconfigured.
Program was reporting itself as misconfigured when it was not
1 parent a1f3e3f commit b4b8512

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/ffxivcensus/gatherer/GathererController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,11 +273,11 @@ public void run() throws Exception {
273273
public String isConfigured() {
274274
boolean configured = true;
275275
StringBuilder sbOut = new StringBuilder();
276-
if (this.startId == 0 || this.startId < 0) {
276+
if ( this.startId < 0) {
277277
sbOut.append("Start ID must be configured to a positive numerical value\n");
278278
configured = false;
279279
}
280-
if (this.endId == 0 || this.endId < 0) {
280+
if ( this.endId < 0) {
281281
sbOut.append("End ID must be configured to a positive numerical value\n");
282282
configured = false;
283283
}

0 commit comments

Comments
 (0)