Skip to content

Commit 8c34dc6

Browse files
committed
Range was not inclusive of last ID
1 parent c221943 commit 8c34dc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ private static void closeConnection(Connection conn) {
262262
* @return the next character ID to be parsed.
263263
*/
264264
public static int getNextID() {
265-
if (nextID < endId) {
265+
if (nextID <= endId) {
266266
int next = nextID;
267267
//Increment id
268268
nextID++;

0 commit comments

Comments
 (0)