You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (Float.parseFloat(tunnelData.getString("version")) > App.VERSION) {
406
-
System.err.println("A new version (" + tunnelData.getString("version") + ") is available for download at https://testingbot.com\nYou have version " + App.VERSION);
407
+
if (Float.parseFloat(tunnelData.get("version").asText()) > App.VERSION) {
408
+
System.err.println("A new version (" + tunnelData.get("version").asText() + ") is available for download at https://testingbot.com\nYou have version " + App.VERSION);
407
409
}
408
410
409
411
Logger.getLogger(App.class.getName()).log(Level.INFO, "Please wait while your personal Tunnel Server is being setup. Shouldn't take more than a minute.\nWhen the tunnel is ready you will see a message \"You may start your tests.\"");
410
412
411
-
if (tunnelData.getString("state").equals("READY")) {
413
+
if (tunnelData.get("state").asText().equals("READY")) {
0 commit comments