From 2ccff6f73f5b46394b8bed72b0090dc08dc6e0f3 Mon Sep 17 00:00:00 2001 From: Ludy Date: Sat, 30 May 2026 23:44:42 +0200 Subject: [PATCH] fix(update-service): correct GitHub branch reference for version retrieval (#6333) --- frontend/editor/src/core/services/updateService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/editor/src/core/services/updateService.ts b/frontend/editor/src/core/services/updateService.ts index 86d3749f5..043c53bc3 100644 --- a/frontend/editor/src/core/services/updateService.ts +++ b/frontend/editor/src/core/services/updateService.ts @@ -185,7 +185,7 @@ export class UpdateService { */ async getCurrentVersionFromGitHub(): Promise { const url = - "https://raw.githubusercontent.com/Stirling-Tools/Stirling-PDF/master/build.gradle"; + "https://raw.githubusercontent.com/Stirling-Tools/Stirling-PDF/V2-master/build.gradle"; try { const response = await fetch(url);