From d907ada62fc4091a95c4556867dd60a3050a19a6 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com.> Date: Mon, 4 Aug 2025 23:43:22 +0100 Subject: [PATCH] fixes --- app/core/src/main/resources/static/js/githubVersion.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/core/src/main/resources/static/js/githubVersion.js b/app/core/src/main/resources/static/js/githubVersion.js index 2788d7c28..d71266fae 100644 --- a/app/core/src/main/resources/static/js/githubVersion.js +++ b/app/core/src/main/resources/static/js/githubVersion.js @@ -74,10 +74,8 @@ async function getUpdateSummary() { async function getFullUpdateInfo() { // Map Java License enum to API types - let type = 'community'; - if (licenseType === 'NORMAL') { - type = 'community'; - } else if (licenseType === 'PRO') { + let type = 'normal'; + if (licenseType === 'PRO') { type = 'pro'; } else if (licenseType === 'ENTERPRISE') { type = 'enterprise';