diff --git a/photon-server/src/main/java/org/photonvision/server/RequestHandler.java b/photon-server/src/main/java/org/photonvision/server/RequestHandler.java index 81f669c4c2..d277f2904f 100644 --- a/photon-server/src/main/java/org/photonvision/server/RequestHandler.java +++ b/photon-server/src/main/java/org/photonvision/server/RequestHandler.java @@ -89,8 +89,9 @@ public static void onSettingsImportRequest(Context ctx) { if (ConfigManager.saveUploadedSettingsZip(tempFilePath.get())) { ctx.status(200); - ctx.result("Successfully saved the uploaded settings zip"); - logger.info("Successfully saved the uploaded settings zip"); + ctx.result("Successfully saved the uploaded settings zip, rebooting"); + logger.info("Successfully saved the uploaded settings zip, rebooting"); + restartProgram(); } else { ctx.status(500); ctx.result("There was an error while saving the uploaded zip file");