Forgot to do it here

This commit is contained in:
Telesphoreo 2022-04-07 02:16:37 -05:00
parent 02393f6be3
commit c9d3b26930
1 changed files with 2 additions and 2 deletions

View File

@ -137,13 +137,13 @@ public class UpdateChecker extends PlexBase
public void updateJar()
{
CloseableHttpClient client = HttpClients.createDefault();
HttpGet get = new HttpGet(DOWNLOAD_PAGE + "lastSuccessfulBuild/api/json");
HttpGet get = new HttpGet(DOWNLOAD_PAGE + "job/master/lastSuccessfulBuild/api/json");
try
{
HttpResponse response = client.execute(get);
JSONObject object = new JSONObject(EntityUtils.toString(response.getEntity(), StandardCharsets.UTF_8));
JSONObject artifact = object.getJSONArray("artifacts").getJSONObject(0);
String name = artifact.getString("displayPath");
String name = artifact.getString("fileName");
PlexLog.log("Downloading latest Plex jar file: " + name);
CompletableFuture.runAsync(() ->
{