Skip to content

Commit

Permalink
fixed getLatestVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Jan 30, 2024
1 parent 4bbf02a commit 6955b9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/myrobotlab/service/Runtime.java
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,7 @@ public static String getVersion() {
* @return The latest build version in String form
*/
public static String getLatestVersion() {
String latest = "http://build.myrobotlab.org:8080/job/myrobotlab/job/develop/lastSuccessfulBuild/buildNumber";
String latest = "https://build.myrobotlab.org:8443/job/myrobotlab/job/develop/lastSuccessfulBuild/buildNumber";
byte[] b = Http.get(latest);
String version = (b == null) ? "unknown" : "1.1." + new String(b);
return version;
Expand Down

0 comments on commit 6955b9d

Please sign in to comment.