Slight pre-release tweak to allow rebuilding of the index when an error occurs on the stack.

This commit is contained in:
James Quinley 2023-06-23 22:30:56 -07:00
parent dee6fdbf95
commit 3f7369efcf

View File

@ -22,6 +22,8 @@ public class Main {
com.jamesquinley.DelegationServices.delegationServices.matchmakingService();
} catch (Exception e) {
System.out.println("Something went wrong, DEBUG: " + e);
System.out.println("Rebuilding database...");
buildIndex();
}
}
}