From 0bd24f346dd6f2a84576bab9078d58d26b7d3ee9 Mon Sep 17 00:00:00 2001 From: Sucukdeluxe Date: Fri, 7 Aug 2026 18:32:12 +0200 Subject: [PATCH] fix: route online backups through downloader host Use the existing TLS-enabled downloader.24-music.de host under a dedicated reverse-proxy path so the backup API can be activated without introducing an unmanaged DNS dependency. --- 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 0b895e1..e8ddeac 100644 --- a/src/main/constants.ts +++ b/src/main/constants.ts @@ -38,7 +38,7 @@ export const SPEED_WINDOW_SECONDS = 1; export const CLIPBOARD_POLL_INTERVAL_MS = 2000; export const DEFAULT_UPDATE_REPO = "Sucukdeluxe/multi-debrid-downloader"; -export const ONLINE_BACKUP_API_URL = "https://backup.24-music.de"; +export const ONLINE_BACKUP_API_URL = "https://downloader.24-music.de/backup-api"; export function defaultSettings(): AppSettings { const baseDir = path.join(os.homedir(), "Downloads", "RealDebrid");