From 7bf6c1bb23e685eda2f1ee37a635c81fe1e32272 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Wed, 3 Jan 2024 13:33:58 +0100 Subject: [PATCH] Update preload.js --- manager/javascripts/preload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();