diff --git a/manager/javascripts/preload.js b/manager/javascripts/preload.js index bf39e387..96636d7d 100644 --- a/manager/javascripts/preload.js +++ b/manager/javascripts/preload.js @@ -14,7 +14,7 @@ const { Octokit } = require('octokit'); const VERSION = "{{OLYMPUS_VERSION_NUMBER}}"; function checkVersion() { /* Check if we are running the latest version */ - const request = new Request("https://raw.githubusercontent.com/Pax1601/DCSOlympus/release-candidate/version.json"); + const request = new Request("https://raw.githubusercontent.com/Pax1601/DCSOlympus/main/version.json"); fetch(request).then((response) => { if (response.status === 200) { return response.json();