We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1f3e3f commit b4b8512Copy full SHA for b4b8512
src/main/java/com/ffxivcensus/gatherer/GathererController.java
@@ -273,11 +273,11 @@ public void run() throws Exception {
273
public String isConfigured() {
274
boolean configured = true;
275
StringBuilder sbOut = new StringBuilder();
276
- if (this.startId == 0 || this.startId < 0) {
+ if ( this.startId < 0) {
277
sbOut.append("Start ID must be configured to a positive numerical value\n");
278
configured = false;
279
}
280
- if (this.endId == 0 || this.endId < 0) {
+ if ( this.endId < 0) {
281
sbOut.append("End ID must be configured to a positive numerical value\n");
282
283
0 commit comments