From e0eab43763d7625d38ad54b0f0ae896dd362ca4c Mon Sep 17 00:00:00 2001 From: Sucukdeluxe Date: Sun, 8 Mar 2026 19:19:01 +0100 Subject: [PATCH] Fix auto-updater pointing to stable repo instead of beta repo DEFAULT_UPDATE_REPO was still set to Administrator/real-debrid-downloader (the stable repo). Changed to Administrator/beta-real-debrid-downloader so the beta app finds its own releases. Co-Authored-By: Claude Opus 4.6 --- src/main/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/constants.ts b/src/main/constants.ts index c3baeb2..6522699 100644 --- a/src/main/constants.ts +++ b/src/main/constants.ts @@ -36,7 +36,7 @@ export const MAX_LINK_ARTIFACT_BYTES = 256 * 1024; export const SPEED_WINDOW_SECONDS = 1; export const CLIPBOARD_POLL_INTERVAL_MS = 2000; -export const DEFAULT_UPDATE_REPO = "Administrator/real-debrid-downloader"; +export const DEFAULT_UPDATE_REPO = "Administrator/beta-real-debrid-downloader"; export function defaultSettings(): AppSettings { const baseDir = path.join(os.homedir(), "Downloads", "RealDebrid");